@extends('layouts.admin')
@section('title', 'Notices')
@section('page-title', 'Notice Management')
@section('content')
{{-- Create Form --}}
{{-- Notices List --}}
@forelse($notices as $notice)
{{ $notice->type === 'danger' ? '🚨' : ($notice->type === 'warning' ? '⚠️' : 'ℹ️') }}
{{ $notice->title }}
{{ $notice->is_active ? 'Active' : 'Inactive' }}
{{ $notice->content }}
{{ $notice->created_at->diffForHumans() }}
@empty
No notices yet. Create one!
@endforelse
{{ $notices->links() }}
@endsection