{{-- Navigation Component This component renders the complete navigation system including: - Top navbar with user info and actions - Sidebar navigation with all menu items - Mobile bottom navigation with core menu items Parameters: - navItems: Array of navigation items to display - userDropdownItems: Array of user-related items for avatar dropdown - isGuest: Boolean indicating if user is a guest --}} @props([ 'navItems', 'userDropdownItems' => [], 'unreadCount' => 0, 'currentLevelIcon' => null, 'currentLevelName' => null, 'currentLevelColor' => null, 'currentLevelKey' => null, 'isGuest' => false, ]) {{-- Top Navbar --}} @if ($isGuest) {{-- Sidebar Navigation - للزوار --}} @else {{-- Sidebar Navigation - للمستخدمين المسجلين --}} @endif {{-- Mobile Bottom Navigation --}}