@extends('layouts.admin') @section('title', 'Notices') @section('page-title', 'Notice Management') @section('content')
{{-- Create Form --}}

Create Notice

@csrf
@error('title')

{{ $message }}

@enderror
@error('content')

{{ $message }}

@enderror
{{-- Notices List --}}
@forelse($notices as $notice)
{{ $notice->type === 'danger' ? '🚨' : ($notice->type === 'warning' ? '⚠️' : 'ℹ️') }}

{{ $notice->title }}

{{ $notice->is_active ? 'Active' : 'Inactive' }}
@csrf
@csrf @method('DELETE')

{{ $notice->content }}

{{ $notice->created_at->diffForHumans() }}

@empty
No notices yet. Create one!
@endforelse
{{ $notices->links() }}
@endsection