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

Tus notificaciones {{ $notifications->total() }} en total · {{ $unreadCount }} sin leer

@if($unreadCount > 0)
@csrf
@endif
@if($notifications->count() === 0) @else
@foreach($notifications as $notif) @php $d = $notif->data; $isUnread = $notif->read_at === null; $icon = $d['icon'] ?? 'fa-bell'; $color = $d['icon_color'] ?? 'primary'; @endphp
@csrf @method('PATCH')
@endforeach
{{ $notifications->links() }} @endif