{{-- Tableau de bord --}}
@if($user && method_exists($user, 'hasRole') && $user->hasRole('client') && $clientDashboardRoute)
{{ __('Tableau de bord') }}
@elseif($user && method_exists($user, 'hasRole') && $user->hasRole('prestataire') && $prestataireDashboardRoute)
{{ __('Tableau de bord') }}
@elseif($defaultDashboardRoute)
{{ __('Tableau de bord') }}
@endif
{{-- Mon profil --}}
@if($profileEditRoute)
{{ __('Mon profil') }}
@endif
{{-- Menu prestataire --}}
@if($user && method_exists($user, 'hasRole') && $user->hasRole('prestataire'))
Mes services
@if($prestataireServicesCreate)
{{ __('Ajouter un service') }}
@endif
@if($prestataireServicesIndex)
{{ __('Gérer mes prestations') }}
@endif
@if($prestataireVideosManage)
{{ __('Mes Vidéos') }}
@endif
Location de matériel
@if($prestataireEquipmentCreate)
{{ __('Ajouter un équipement') }}
@endif
@if($prestataireEquipmentIndex)
{{ __('Voir mes équipements') }}
@endif
Annonces
@if($prestataireUrgentSalesCreate)
{{ __('Mettre un produit en vente') }}
@endif
@if($prestataireUrgentSalesIndex)
{{ __('Voir mes ventes actives') }}
@endif
Gestion financière
@if($prestatairePaymentsRoute && function_exists('feature_enabled') && feature_enabled('payments_enabled'))
{{ __('Mes revenus') }}
@endif
@if($prestataireSubscriptionsRoute && function_exists('feature_enabled') && feature_enabled('subscription_enabled'))
{{ __('Mon abonnement') }}
@endif
@if($prestataireInventoryRoute)
{{ __('Mon inventaire') }}
@endif
@if($prestataireDeliveryRoute)
{{ __('Mes livraisons') }}
@endif
@if($prestataireNotificationSettingsRoute)
{{ __('Paramètres notifications') }}
@endif
@elseif($user && method_exists($user, 'hasRole') && $user->hasRole('client'))
{{-- Menu client --}}
@if($messagingRoute)
{{ __('Mes messages') }}
@endif
@if($clientBookingsRoute)
{{ __('Mes réservations') }}
@endif
@if($clientCartRoute)
{{ __('Panier') }}
@endif
@if($clientEquipmentRentals)
{{ __('Mes locations') }}
@endif
@if(Route::has('food.orders'))
{{ __('Mes commandes food') }}
@endif
@if($clientFollowsRoute)
{{ __('Prestataires suivis') }}
@endif
Gestion
@if($clientPaymentsRoute && function_exists('feature_enabled') && feature_enabled('payments_enabled'))
{{ __('Mes paiements') }}
@endif
@if($clientSubscriptionsRoute && function_exists('feature_enabled') && feature_enabled('subscription_enabled'))
{{ __('Abonnements') }}
@endif
@if($clientDeliveryRoute)
{{ __('Mes livraisons') }}
@endif
@if($clientAddressBookRoute)
{{ __('Carnet d\'adresses') }}
@endif
@if($clientNotificationSettingsRoute)
{{ __('Paramètres notifications') }}
@endif
@endif
{{-- Déconnexion --}}