@php
$stats = [
['label' => 'Tổng khách hàng', 'value' => $totalUser, 'icon' => 'users', 'bg' => 'success'],
['label' => 'Số dư khả dụng', 'value' => $totalBalance, 'icon' => 'wallet', 'bg' => 'warning'],
['label' => 'Tổng nạp tiền', 'value' => $totalRecharge, 'icon' => 'piggy-bank', 'bg' => 'primary'],
['label' => 'KH tháng ' . now()->format('m'), 'value' => $totalUserMonth, 'icon' => 'user-plus', 'bg' => 'info'],
['label' => 'KH hôm nay', 'value' => $totalUserToday, 'icon' => 'user-check', 'bg' => 'info'],
['label' => 'Tổng doanh thu', 'value' => $totalRevenue, 'icon' => 'chart-line', 'bg' => 'danger'],
['label' => 'Tổng đơn hàng', 'value' => $totalOrder, 'icon' => 'shopping-bag', 'bg' => 'warning'],
['label' => 'Đơn tháng ' . now()->format('m'), 'value' => $OrderMonth, 'icon' => 'calendar-alt', 'bg' => 'warning'],
['label' => 'Đơn hôm nay', 'value' => $OrderToday, 'icon' => 'calendar-day', 'bg' => 'warning'],
['label' => 'Đơn tuần này', 'value' => $OrderWeek, 'icon' => 'calendar-week', 'bg' => 'info'],
['label' => 'Nạp hôm nay', 'value' => $totalRechargeToday, 'icon' => 'credit-card', 'bg' => 'primary'],
['label' => 'Nạp tháng ' . now()->format('m'), 'value' => $totalRechargeMonth, 'icon' => 'credit-card', 'bg' => 'primary'],
['label' => 'Chi tiêu hôm nay', 'value' => $totalTieuToday, 'icon' => 'hand-holding-usd', 'bg' => 'primary'],
['label' => 'Doanh thu hôm nay', 'value' => $totalRenvenueToday, 'icon' => 'trending-up', 'bg' => 'danger'],
['label' => 'Doanh thu tuần', 'value' => $totalRenvenueWeek, 'icon' => 'chart-bar', 'bg' => 'danger'],
['label' => 'Doanh thu tháng ' . now()->format('m'), 'value' => $totalRenvenueMonth, 'icon' => 'chart-pie', 'bg' => 'danger'],
];
@endphp
@foreach ($stats as $stat)
{{ number_format($stat['value']) }}
{{ $stat['label'] }}
@endforeach