{{-- الإشعارات --}}
@php $unreadCount = auth()->user()->unreadNotifications()->count() @endphp
@if($unreadCount > 0)
{{ $unreadCount > 9 ? '9+' : $unreadCount }}
@endif
{{-- الملف الشخصي --}}
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
{{-- محتوى الصفحة --}}
@yield('content')