@extends('frontend.layouts.app') @push('title') {{ $title }} @endpush @section('content') {{$title}} {{__('Home')}} {{$title}} @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
{{ date('M d, Y', strtotime($news->created_at)) }}
{{__('BY')}} : {{$news->author->name}}
{{__('No News Found')}}