@php
$cards = [
[
'value' => number_format($stats['total_users']),
'label' => 'User Mengajukan',
'icon' => 'user',
'color' => 'secondary',
'text' => 'text-heading',
],
[
'value' => 'Rp' . number_format($stats['approved_total'], 0, ',', '.'),
'label' => 'Withdraw Disetujui',
'icon' => 'check',
'color' => 'success',
'text' => 'text-success',
],
[
'value' => 'Rp' . number_format($stats['rejected_total'], 0, ',', '.'),
'label' => 'Withdraw Ditolak',
'icon' => 'x',
'color' => 'danger',
'text' => 'text-danger',
],
[
'value' => 'Rp' . number_format($stats['pending_total'], 0, ',', '.'),
'label' => 'Withdraw Pending',
'icon' => 'clock',
'color' => 'warning',
'text' => 'text-warning',
],
];
@endphp
@foreach ($cards as $card)
{{ $card['value'] }}
{{ $card['label'] }}
@endforeach