SPORT STORE

KVS

@php $unreadNotifs = auth()->user()->unreadNotifications ?? collect(); $unreadCount = $unreadNotifs->count(); $recentNotifs = auth()->user()->notifications()->take(10)->get(); @endphp

Notifikasi

@if($unreadCount > 0)
@csrf
@endif
@forelse($recentNotifs as $n) @php $d = $n->data; $isUnread = $n->read_at === null; @endphp
{{ $d['title'] ?? 'Notifikasi' }}
{{ $d['message'] ?? '' }}
@empty
Tiada notifikasi.
@endforelse
Log Keluar
@if(isset($unreadCount) && $unreadCount > 0) @endif
{{-- CONTENT MASUK SINI --}} @yield('content')