@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
@endforeach
{{ $notifications->links() }}
@endif