@php $unreadNotificationsCount = \App\Models\PharmacyNotification::query() ->where('pharmacy_id', auth()->user()->pharmacy_id) ->whereNull('read_at') ->count(); $unreadNotificationsBadge = $unreadNotificationsCount > 99 ? '+99' : '+'.$unreadNotificationsCount; $anchorClass = $anchorClass ?? 'flex items-center justify-center p-2 rounded-lg hover:bg-primary/10 text-slate-700 dark:text-slate-200 relative'; @endphp notifications @if($unreadNotificationsCount > 0) {{ $unreadNotificationsBadge }} @endif