@props(['label', 'value', 'color' => 'indigo', 'iconBg' => null]) @php $colorMap = [ 'indigo' => ['bg' => 'bg-[#E9EBF5]', 'text' => 'text-[#4A538F]'], 'green' => ['bg' => 'bg-[#C9F7E3]', 'text' => 'text-[#1F9254]'], 'blue' => ['bg' => 'bg-[#E0F2FE]', 'text' => 'text-[#0369A1]'], 'red' => ['bg' => 'bg-[#FFD6D6]', 'text' => 'text-[#C0392B]'], ]; $colors = $colorMap[$color] ?? $colorMap['indigo']; @endphp
{{ $label }}
{{ $value }}