@php $notifications = App\Models\Notification::whereReceiverId($activeUser->id)->latest()->take(5)->get(); $unreadNotificationsCount = App\Models\Notification::whereReceiverId($activeUser->id)->whereStatus("0")->count(); @endphp @yield('title') @include('sections.client-styles') @stack('page-styles')
@include('sections.client-header')
@include('sections.client-sidebar')
@yield('body')
{{-- --}} @include('sections.client-footer') @include('sections.client-scripts') @include('sections.notification-scripts') @stack('page-scripts')