@extends('admin.layout') @section('title', 'Tableau de bord') @section('content')
Licences totales
{{ $stats['total_licenses'] }}
Actives
{{ $stats['active_licenses'] }}
Expirées
{{ $stats['expired_licenses'] }}
Révoquées
{{ $stats['revoked_licenses'] }}
Activité récente (24h)
@forelse($recent_logs as $log) @empty @endforelse
ActionLicenceClientRésultatDate
{{ $log->action }} {{ Str::limit($log->license_id, 12) }} {{ $log->license?->client?->name ?? '—' }} @if($log->result === 'success') OK @else {{ $log->result }} @endif {{ $log->created_at->format('d/m H:i') }}
Aucune activité récente
@endsection