@php use App\Models\BellNotification; // সর্বশেষ ৫টা notification $notifications = BellNotification::latest() ->take(5) ->get(); // মোট unread count $unreadCount = BellNotification::whereNull('read_at')->count(); @endphp