@props(['title', 'value', 'icon', 'color' => 'primary']) @php $bgClass = match($color) { 'primary' => 'stats-card', 'white' => 'bg-white', default => 'bg-white' }; $textClass = match($color) { 'primary' => 'text-white', 'white' => 'text-gray-900', default => 'text-gray-900' }; $iconColor = match($color) { 'primary' => 'text-white/60', 'orange' => 'text-orange-500', 'green' => 'text-green-500', default => 'text-gray-500' }; @endphp

{{ $title }}

{{ $value }}

{!! $icon !!}