@extends('admin.layout') @section('title', 'Statistiques globales') @section('content')
Statistiques globales
Exporter PDF

Rapport Statistique

Période: {{ \Carbon\Carbon::parse($stats['filters']['start_date'])->format('d/m/Y') }} - {{ \Carbon\Carbon::parse($stats['filters']['end_date'])->format('d/m/Y') }}

Date d'impression: {{ now()->format('d/m/Y H:i') }}


Total Rapports
{{ $stats['total_reports'] }}
Aujourd'hui
{{ $stats['recent_activity']['today'] }}
Cette semaine
{{ $stats['recent_activity']['this_week'] }}
Ce mois
{{ $stats['recent_activity']['this_month'] }}
Évolution des rapports
Répartition par type
Rapports par utilisateur
@foreach($stats['reports_by_user'] as $user) @endforeach
Utilisateur Nombre de rapports Pourcentage
{{ $user->full_name }} {{ $user->count }}
{{ number_format(($user->count / $stats['total_reports']) * 100, 1) }}%
@endsection