@extends('layouts.simple.master') @section('title', 'NewsList') @section('breadcrumb-title')

News List

@endsection @section('css') @endsection @section('breadcrumb-items') @endsection @section('content')
@forelse ($news as $index => $item) @empty @endforelse
Image Title Category News Date Actions
{{ $item->title }} {{ $item->category->category_name ?? 'Uncategorized' }} {{ \Carbon\Carbon::parse($item->news_date)->format('d M Y') }}
No News Found
{!! $news->onEachSide(1)->links('pagination::bootstrap-5') !!}
@endsection @section('script') @endsection