@php // Only the 5 newest unread notifications are shown; load just those instead of // hydrating every notification of the user (tie-break on id keeps the old stable order). $navbarUnreadNotifications = auth()->user()->notifications()->whereNull('read_at') ->orderByDesc('created_at')->orderBy('id')->take(5)->get(); $navbarUnreadCount = auth()->user()->notifications()->whereNull('read_at')->count(); @endphp