Selinku
Dashboard
@php
$unreadNotifs = auth()->user()->unreadNotifications;
$hasUnread = $unreadNotifs->count() > 0;
@endphp
Notifikasi
@if($hasUnread) @endif
@forelse($unreadNotifs->take(10) as $notif)
@empty
@endforelse
{{ $notif->data['title'] ?? 'Info' }}
{{ $notif->data['message'] ?? '' }}
{{ $notif->created_at->diffForHumans() }}
Tidak ada notifikasi baru
@yield('content')