@extends('layouts.app') @section('content')
@if (Auth::check()) Add new Story

My Story Lists

@foreach($user->story as $story) @endforeach

{{$story->sTitle}}

{{$story->sDescription}}

{{$story->created_at}}

{{$story->newsSource}}

 
{{ csrf_field() }}
@else
@endif
@endsection