@extends('layouts.admin-modern') @section('title', 'Analytiques') @section('page-title', 'Tableau de bord analytique') @section('content')

Utilisateurs totaux

{{ number_format($stats['total_users'] ?? 0) }}

+{{ $stats['new_users_this_month'] ?? 0 }} ce mois

Revenu total

{{ number_format($stats['total_revenue'] ?? 0, 2) }} €

{{ number_format($stats['revenue_growth'] ?? 0, 1) }}% vs mois dernier

Réservations

{{ number_format($stats['total_bookings'] ?? 0) }}

{{ $stats['pending_bookings'] ?? 0 }} en attente

Services actifs

{{ number_format($stats['active_services'] ?? 0) }}

{{ $stats['new_services_this_week'] ?? 0 }} nouveaux cette semaine

Évolution des revenus

Évolution des inscriptions

Catégories populaires

@foreach(($stats['top_categories'] ?? []) as $category)
{{ $category->name }} {{ $category->count }} services
@endforeach

Top prestataires

@foreach(($stats['top_prestataires'] ?? []) as $presta)
{{ $presta->name }} {{ number_format($presta->revenue, 2) }} €
@endforeach

Activité récente

{{ $stats['new_users_today'] ?? 0 }} nouveaux utilisateurs

Aujourd'hui

{{ $stats['bookings_today'] ?? 0 }} réservations

Aujourd'hui

{{ $stats['reviews_today'] ?? 0 }} avis

Aujourd'hui

@csrf
@push('scripts') @endpush @endsection