@if(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
{{-- Event Matrix --}}
@foreach($grouped as $category => $events)
{{ $categoryLabels[$category] ?? ucfirst($category) }}
| Event |
Web |
Push |
Email |
SMS |
Sound |
Active |
Template |
@foreach($events as $event)
|
{{ $event->label }}
{{ $event->event_key }}
|
@foreach(['web_enabled' => 'blue', 'push_enabled' => 'purple', 'email_enabled' => 'emerald', 'sms_enabled' => 'amber', 'sound_enabled' => 'slate', 'is_active' => 'slate'] as $col => $color)
|
@endforeach
Edit
|
@endforeach
@endforeach