{{-- resources/views/components/admin/stat-card.blade.php --}} {{-- Reusable stat card for dashboard KPIs --}} {{-- Props: icon (bi class), label (string), value (int), sub (string), color (CSS var name) --}} @props([ 'icon' => 'bi-bar-chart', 'label' => 'Stat', 'value' => 0, 'sub' => '', 'color' => 'accent', ])
{{ number_format($value) }}
{{ $label }}
@if($sub)
{{ $sub }}
@endif