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

{{ date('M d, Y', strtotime($news->created_at)) }}

{{__('BY')}} : {{$news->author->name}}

{{ $news->title }}

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

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

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