@php $notifications = [ ['date' => '18 Sep 2026', 'title' => 'Visitor advisory and campus timing notice', 'type' => 'Notice', 'url' => url('/contact')], ['date' => '12 Sep 2026', 'title' => 'Tender notice for campus services', 'type' => 'Tender', 'url' => url('/tenders')], ['date' => '05 Sep 2026', 'title' => 'Recruitment notification', 'type' => 'Recruitment', 'url' => null], ]; @endphp
@include('frontend.partials.section-heading', [ 'eyebrow' => 'Latest Notifications', 'title' => 'Official Updates', 'summary' => 'Static notices reused from the existing frontend presentation.', ])
@foreach ($notifications as $notification)
{{ $notification['date'] }} {{ $notification['type'] }}

{{ $notification['title'] }}

@if ($notification['url']) View @else Details pending @endif
@endforeach