@if($loading)
@else {{-- Stats Cards --}}

{{ $stats['total_revenue_formatted'] ?? '0 FCFA' }}

Revenus totaux

+{{ $stats['today_orders'] ?? 0 }} aujourd'hui

{{ $stats['orders'] ?? 0 }}

Commandes totales

@if(($stats['pending_shops'] ?? 0) > 0) {{ $stats['pending_shops'] }} en attente @endif

{{ $stats['shops'] ?? 0 }}

{{ $stats['active_shops'] ?? 0 }} actives

{{ $stats['clients'] ?? 0 }}

Clients inscrits

{{-- Quick Actions --}}
Boutiques en attente {{ $stats['pending_shops'] ?? 0 }}
Retraits en attente {{ $stats['pending_withdrawals'] ?? 0 }}
Toutes les commandes
Toutes les boutiques
{{-- Recent Activity --}}
{{-- Recent Orders --}}

Commandes recentes

Voir tout
@forelse($recentOrders as $order)

{{ $order['identifier'] }}

{{ $order['client'] }} - {{ $order['date'] }}

{{ $order['status'] }}
@empty
Aucune commande recente
@endforelse
{{-- Recent Shops --}}

Nouvelles boutiques

Voir tout
@forelse($recentShops as $shop)

{{ $shop['name'] }}

{{ $shop['date'] }}

{{ $shop['status'] }}
@empty
Aucune boutique recente
@endforelse
@endif