@php $notifications = App\Models\Notification::whereReceiverId($activeUser->id)->latest()->take(5)->get(); $unreadNotificationsCount = App\Models\Notification::whereReceiverId($activeUser->id)->whereStatus("0")->count(); @endphp