Rapport d'Activité Horaire

{{ $reportData['period'] }}

+{{ $reportData['counts']['users'] }}
Nouveaux Inscrits
+{{ $reportData['counts']['kyc'] }}
Documents KYC
{{ $reportData['counts']['withdrawals'] }}
Demandes Retrait
{{ $reportData['counts']['transfers'] }}
Transferts
@if(count($reportData['users']) > 0)
👥 Derniers Inscrits
@foreach($reportData['users'] as $user)
{{ $user['name'] }} ({{ $user['email'] }})
Tel: {{ $user['phone'] ?? 'N/A' }}
@endforeach
@endif @if(count($reportData['withdrawals']) > 0)
💸 Demandes de Retrait
@foreach($reportData['withdrawals'] as $w)
{{ number_format($w['amount'], 0, ',', ' ') }} {{ $w['currency'] }} via {{ $w['method'] }}
{{ $w['status'] }} Ref: {{ $w['withdrawal_reference'] }}
@endforeach
@endif @if(count($reportData['kyc']) > 0)
🛡️ Documents KYC
@foreach($reportData['kyc'] as $k)
Document {{ $k['document_type'] }} soumis
ID: {{ $k['id'] }}
@endforeach
@endif