@extends('layouts.admin') @section('title','Notices') @section('breadcrumb')@endsection @section('admin-content')

Notices

Post Notice
@forelse($notices as $n) @empty @endforelse
#TitleVisible ToPosted ByExpiresStatusActions
{{ $loop->iteration }} {{ $n->title }} {{ ucfirst($n->visible_to) }} {{ optional($n->postedBy)->name }} {{ $n->expires_at ? $n->expires_at->format('d M Y') : 'Never' }} {{ $n->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
No notices found.
{{ $notices->links() }}
@endsection