@vite(['resources/css/app.css'])
TaPrestation
Tableau de bord
👥 Utilisateurs
Tous les utilisateurs
Prestataires
@php $pendingCount = \App\Models\Prestataire::where('is_approved', false)->count(); @endphp @if($pendingCount > 0)
{{ $pendingCount }}
@endif
Clients
Ambassadeurs
📦 Contenu
Services
Équipements
Annonces / Ventes
Réservations
@php $pendingBookings = \App\Models\Booking::where('status', 'pending')->count(); @endphp @if($pendingBookings > 0)
{{ $pendingBookings }}
@endif
Avis
💰 Finance
Paiements
Factures
Abonnements
Comptabilité
🚨 Modération
Signalements
@php $totalReports = \App\Models\UrgentSaleReport::where('status', 'pending')->count() + \App\Models\EquipmentReport::where('status', 'pending')->count() + \App\Models\ServiceReport::where('status', 'pending')->count(); @endphp @if($totalReports > 0)
{{ $totalReports }}
@endif
Messages signalés
@php $reportedMsgs = \App\Models\Message::where('is_reported', true)->where('status', '!=', 'hidden')->count(); @endphp @if($reportedMsgs > 0)
{{ $reportedMsgs }}
@endif
Notifications
@php $unreadNotifs = \App\Models\Notification::where('read_at', null)->count(); @endphp @if($unreadNotifs > 0)
{{ $unreadNotifs }}
@endif
📊 Statistiques
Tableau analytique
⚙️ Configuration
💎 Abonnements Presta
Fonctionnalités
💰 Commissions
Pages légales
Paramètres
Système
Sécurité
@yield('page-title', 'Administration')
{{ substr(Auth::user()->name, 0, 1) }}
{{ Auth::user()->name }}
Mon profil
Paramètres
Commissions
@csrf
Déconnexion
@yield('content')
@stack('scripts')