@if(session('success'))
{{ session('success') }}
@endif {{-- Header --}}

System Notifications

Control which channels are active for each notification event type.

{{-- Legend --}}

Channel Legend

Web — In-app bell notification Push — Real-time Pusher broadcast Email — SMTP email SMS — TxtConnect SMS Sound — Browser notification sound
{{-- Broadcast Panel --}}

📢 Send Broadcast Notification

@csrf
{{-- Event Matrix --}} @foreach($grouped as $category => $events)

{{ $categoryLabels[$category] ?? ucfirst($category) }}

@foreach($events as $event) @foreach(['web_enabled' => 'blue', 'push_enabled' => 'purple', 'email_enabled' => 'emerald', 'sms_enabled' => 'amber', 'sound_enabled' => 'slate', 'is_active' => 'slate'] as $col => $color) @endforeach @endforeach
Event Web Push Email SMS Sound Active Template
{{ $event->label }} {{ $event->event_key }} Edit
@endforeach