@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'], ]; @endphp
Latest Notifications

Official Updates

Important visitor advisories, tender updates and institutional notifications.

@foreach ($notifications as $notification)
{{ $notification['date'] }} {{ $notification['type'] }}

{{ $notification['title'] }}

@if (!empty($notification['url'])) View @else @endif
@endforeach