@php // Only fetch unread notifications $notifications = App\Models\Notification::where('user_id', auth()->id()) ->where('is_read', '0') ->orderBy('created_at', 'desc') ->get(); // dd($notifications); $unreadCount = $notifications->count(); @endphp