@extends('layouts.main') @section('content')

Manage Notices

➕ Add Notice @forelse($notices as $notice) @empty @endforelse
ID Title Type Status Duration Actions
{{ $notice->id }} {{ $notice->title }} {{ ucfirst($notice->type) }} @if($notice->status) Active @else Inactive @endif {{ $notice->start_date ? $notice->start_date : 'N/A' }} - {{ $notice->end_date ? $notice->end_date : 'N/A' }} Edit
@csrf @method('DELETE')
No notices found
{{ $notices->links() }}
@endsection