@extends('frontend.layouts.app') @push('title') {{ $title }} @endpush @section('content')
@forelse ( $stories as $story )

{{ \Carbon\Carbon::parse($story->created_at)->format('M d, Y') }}

{{$story->title}}

{{__(' Know More')}}
@empty

{{__('No Story Found')}}

@endforelse
{{$stories->links()}}
@endsection