@php
$unreadNotifs = auth()->user()->unreadNotifications ?? collect();
$unreadCount = $unreadNotifs->count();
$recentNotifs = auth()->user()->notifications()->take(10)->get();
@endphp
Log Keluar
@if(isset($unreadCount) && $unreadCount > 0)
Anda ada {{ $unreadCount }} notifikasi baru.
@endif
{{-- CONTENT MASUK SINI --}}
@yield('content')