@section('page-title', 'Notifications')

Notifications

System alerts and updates

Mark All Read
@feature('automated_notifications')

Notification Preferences

@csrf @php $prefs = auth()->user()->notification_preferences ?? []; @endphp
@foreach([ 'claim_status' => 'Claim Status Changes', 'benefit_warning' => 'Benefit Limit Warnings', 'premium_reminder' => 'Premium Payment Reminders', 'preauth_decision' => 'Pre-Authorization Decisions', 'chronic_approval' => 'Chronic Registration Approvals', ] as $key => $label)

{{ $label }}

@endforeach
@endfeature
@forelse($notifications as $notif)

{{ $notif->title }}

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

{{ $notif->message }}

{{ ucfirst($notif->type) }}
@empty

No notifications yet.

@endforelse
{{ $notifications->links() }}