@props(['title', 'value', 'icon' => null, 'trend' => null, 'trendUp' => true, 'color' => 'primary']) @php $colors = [ 'primary' => 'bg-primary-50 text-primary-600', 'green' => 'bg-green-50 text-green-600', 'red' => 'bg-red-50 text-red-600', 'yellow' => 'bg-yellow-50 text-yellow-600', 'blue' => 'bg-blue-50 text-blue-600', ]; $colorClass = $colors[$color] ?? $colors['primary']; @endphp

{{ $title }}

{{ $value }}

@if($trend)

@if($trendUp) @else @endif {{ $trend }}

@endif
@if($icon)
{!! $icon !!}
@endif