{{-- ═══════════════════════════════════════════════════════════════════════════ FILE 1: resources/views/components/budget/kpi-card.blade.php Usage: ═══════════════════════════════════════════════════════════════════════════ --}} @props(['label', 'value', 'color' => 'blue', 'sub' => null]) @php $colorMap = [ 'blue' => ['border' => 'border-t-blue-500', 'text' => 'text-blue-700'], 'green' => ['border' => 'border-t-green-500', 'text' => 'text-green-700'], 'amber' => ['border' => 'border-t-amber-500', 'text' => 'text-amber-700'], 'orange' => ['border' => 'border-t-orange-500', 'text' => 'text-orange-700'], 'red' => ['border' => 'border-t-red-500', 'text' => 'text-red-700'], ]; $cls = $colorMap[$color] ?? $colorMap['blue']; @endphp
{{ $message }}