@props(['title', 'value', 'trend' => null, 'trendLabel' => null, 'color' => 'emerald']) @php $colorClasses = [ 'emerald' => ['bg' => 'bg-emerald-50', 'icon' => 'text-emerald-600', 'gradient' => 'from-emerald-500 to-emerald-600'], 'blue' => ['bg' => 'bg-blue-50', 'icon' => 'text-blue-600', 'gradient' => 'from-blue-500 to-blue-600'], 'amber' => ['bg' => 'bg-amber-50', 'icon' => 'text-amber-600', 'gradient' => 'from-amber-500 to-amber-600'], 'purple' => ['bg' => 'bg-purple-50', 'icon' => 'text-purple-600', 'gradient' => 'from-purple-500 to-purple-600'], ]; $colors = $colorClasses[$color] ?? $colorClasses['emerald']; @endphp

{{ $title }}

{{ $value }}

@if($trend !== null && $trendLabel)
@if($trend > 0) {{ $trend }}% @elseif($trend < 0) {{ abs($trend) }}% @endif {{ $trendLabel }}
@endif
@isset($icon)
{!! $icon !!}
@endisset