@php
$statusLinks = [
'Aktif' => route('kendaraan.index', ['status' => 'active']),
'Stand By' => route('kendaraan.index', ['status' => 'standby']),
'Sedang Dalam Perbaikan' => route('servis.index'),
];
$statusColors = [
'Aktif' => ['bg' => '#dcfce7', 'text' => '#166534', 'hover' => '#f0fdf4'],
'Stand By' => ['bg' => '#fef9c3', 'text' => '#92400e', 'hover' => '#fefce8'],
'Sedang Dalam Perbaikan' => ['bg' => '#fee2e2', 'text' => '#991b1b', 'hover' => '#fef2f2'],
];
@endphp
@foreach($statusBreakdown as $label => $count)
@php $clr = $statusColors[$label] ?? ['bg' => '#f3f4f6', 'text' => '#374151', 'hover' => '#f9fafb']; @endphp
{{ $label }}
{{ $count }}
@endforeach