@props(['label' => '', 'value' => '', 'trend' => null, 'trendLabel' => '', 'icon' => '', 'color' => 'primary']) @php $colorMap = [ 'primary' => 'bg-primary-100 text-primary-600 dark:bg-primary-900/30 dark:text-primary-400', 'success' => 'bg-green-100 text-green-600 dark:bg-green-900/30 dark:text-green-400', 'warning' => 'bg-amber-100 text-amber-600 dark:bg-amber-900/30 dark:text-amber-400', 'danger' => 'bg-red-100 text-red-600 dark:bg-red-900/30 dark:text-red-400', 'accent' => 'bg-accent-100 text-accent-600 dark:bg-accent-900/30 dark:text-accent-400', ]; $iconClass = $colorMap[$color] ?? $colorMap['primary']; @endphp
{{ $label }}
{{ $value }}
@if($trend !== null) {{ $trend >= 0 ? '↑' : '↓' }} {{ abs($trend) }}% @endif{{ $trendLabel }}
@endif