@yield('page-title', 'Dashboard')
{{ now()->format('d M Y') }} {{-- Notification Bell --}} @php $unreadCount = \App\Models\Notification::where('user_id', auth()->id())->whereNull('read_at')->count(); $recentNotifs = \App\Models\Notification::where('user_id', auth()->id())->latest()->take(6)->get(); @endphp Logout
@if(session('success')) @endif @if(session('error')) @endif @yield('content')