@extends('layouts.admin', ['heading' => 'Broadcast Notifications', 'subheading' => 'Send system-wide messages']) @section('content')
Send Broadcast
@csrf
Recent Broadcasts
@forelse($recent as $note)
{{ $note->title }}
{{ optional($note->created_at)->format('Y-m-d H:i') }}
{{ $note->message }}
@empty
No broadcasts yet.
@endforelse
@endsection