@props(['label', 'value', 'subInfo' => null, 'icon' => 'chart-bar', 'color' => 'primary']) @php $colorClasses = match($color) { 'success' => 'bg-emerald-50 text-emerald-500', 'warning' => 'bg-amber-50 text-amber-500', 'danger' => 'bg-red-50 text-red-500', 'info' => 'bg-blue-50 text-blue-500', default => 'bg-indigo-50 text-primary-500' }; $iconSvg = match($icon) { 'users' => '', 'door-open' => '', 'cash' => '', 'exclamation' => '', default => '' }; @endphp

{{ $label }}

{{ $value }}

@if($subInfo)

{{ $subInfo }}

@endif
{!! $iconSvg !!}