{{ $isAr ? 'تقرير لوحة الإحصاء - الأدمن' : 'Admin Dashboard Report' }}

{{ \Carbon\Carbon::now()->translatedFormat('l، j F Y — H:i') }}

{{-- Primary Metrics --}}
{{ $isAr ? 'المقاييس الرئيسية' : 'Primary Metrics' }}
@foreach(array_chunk($primaryMetrics, 4) as $row) @foreach($row as $m)
{{ number_format($m['value']) }}
{{ $m['label'] }}
@endforeach @endforeach
{{-- Report Groups --}} @foreach($reportGroups as $group)
{{ $group['title'] }}
@foreach($group['cards'] as $card) @endforeach
{{ $isAr ? 'البند' : 'Item' }} {{ $isAr ? 'القيمة' : 'Value' }} {{ $isAr ? 'الوصف' : 'Description' }}
{{ $card['label'] }} {{ number_format($card['value']) }} {{ $card['description'] }}
@endforeach