@php $systemSetting = App\Models\SystemSetting::first(); $user = Auth::user(); $unreadCount = $user?->unreadNotifications->count() ?? 0; $recentNotifications = $user?->notifications()->latest()->take(5)->get() ?? collect(); @endphp
logo