@props([ 'title' => '', 'value' => 0, 'icon' => 'assessment', 'color' => 'primary', 'trend' => null, 'trendDirection' => 'up', 'url' => null, 'subtitle' => null, 'loading' => false, 'currency' => false ]) @php $colorClasses = [ 'primary' => ['bg' => 'bg-primary', 'text' => 'text-primary', 'border' => 'border-primary'], 'success' => ['bg' => 'bg-success', 'text' => 'text-success', 'border' => 'border-success'], 'warning' => ['bg' => 'bg-warning', 'text' => 'text-warning', 'border' => 'border-warning'], 'danger' => ['bg' => 'bg-danger', 'text' => 'text-danger', 'border' => 'border-danger'], 'info' => ['bg' => 'bg-info', 'text' => 'text-info', 'border' => 'border-info'], 'secondary' => ['bg' => 'bg-secondary', 'text' => 'text-secondary', 'border' => 'border-secondary'], ]; $currentColor = $colorClasses[$color] ?? $colorClasses['primary']; @endphp