@php $notices = \App\Models\News::where('category', 'Notice Board')->orderby('created_at', 'desc')->take(5)->get(); @endphp
@if($notices)
Notice Board
@foreach($notices as $notice)
{{ $notice->title }}

{{ $notice->created_at }}

@endforeach
@endif