@extends('admin.layout')
@section('title', 'Statistiques globales')
@section('content')
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'] }}
| Utilisateur |
Nombre de rapports |
Pourcentage |
@foreach($stats['reports_by_user'] as $user)
| {{ $user->full_name }} |
{{ $user->count }} |
{{ number_format(($user->count / $stats['total_reports']) * 100, 1) }}%
|
@endforeach
@endsection