@php
$stats = [
['label' => 'Total Pending Form', 'value' => $total_pending_for_dog_license, 'color' => '#ffc107a8'],
['label' => 'Total Approved Form', 'value' => $total_approve_for_dog_license, 'color' => '#28a745'],
['label' => 'Total Rejected Form', 'value' => $total_rejected_for_dog_license, 'color' => '#dc3545e8'],
['label' => 'Total Pending Renewal Form', 'value' => $total_pending_renewal_for_dog_license, 'color' => '#ffc107a8'],
['label' => 'Total Approved Renewal Form', 'value' => $total_approved_renewal_for_dog_license, 'color' => '#28a745'],
['label' => 'Total Rejected Renewal Form', 'value' => $total_rejected_renewal_for_dog_license, 'color' => '#dc3545e8'],
];
@endphp
@foreach ($stats as $stat)
@endforeach