@php
$cards = [
['label' => 'Total', 'value' => $snapshot['total'] ?? 0, 'color' => 'primary', 'icon' => 'database'],
['label' => 'Open', 'value' => $snapshot['open'] ?? 0, 'color' => 'info', 'icon' => 'folder-open'],
['label' => 'Overdue', 'value' => $snapshot['overdue'] ?? 0, 'color' => 'danger', 'icon' => 'clock'],
['label' => 'Awaiting Effectiveness', 'value' => $snapshot['awaiting_effectiveness'] ?? 0, 'color' => 'warning', 'icon' => 'hourglass-half'],
['label' => 'Closed (This Month)', 'value' => $snapshot['closed_this_month'] ?? 0, 'color' => 'success', 'icon' => 'check-circle'],
['label' => 'Avg Age (Open)', 'value' => $fmtNum($snapshot['avg_age_days'] ?? null) . ' d', 'color' => 'secondary', 'icon' => 'hourglass-half'],
['label' => 'On-Time Closure Rate', 'value' => ($snapshot['on_time_closure_rate'] ?? null) !== null ? $snapshot['on_time_closure_rate'] . '%' : '—', 'color' => 'success', 'icon' => 'check'],
];
@endphp
@foreach($cards as $c)
{{ $c['label'] }}
{{ $c['value'] }}
@endforeach