Latest Campus Notices
@if(session('success'))
{{ session('success') }}
@endif
{{-- Sample Notices --}}
@php
$notices = [
['title' => 'Mid-Semester Exams Start 22 July 2025', 'content' => 'All students are advised that mid-semester exams commence on 22 July 2025. Please ensure you check your timetable and venue in advance.', 'date' => '2025-07-15'],
['title' => 'Library Registration Ends 19 July', 'content' => 'Students who haven’t registered with the library must do so by 19 July to access course materials and online journals.', 'date' => '2025-07-14'],
['title' => 'New Wi-Fi Password Available', 'content' => 'The campus Wi-Fi password has been updated. Please visit the ICT office with your student ID to get access credentials.', 'date' => '2025-07-13'],
];
@endphp
@foreach ($notices as $notice)
{{ $notice['title'] }}
{{ $notice['content'] }}
Posted on {{ \Carbon\Carbon::parse($notice['date'])->format('d M Y') }}
@endforeach
{{-- No Notices Message --}}
@if (empty($notices))
No notices available at this time.
@endif