@props([
'label',
'value',
'icon' => 'chart',
'trend' => null,
'tone' => 'brand',
])
@php
$tones = [
'brand' => 'bg-brand-50 text-brand-700',
'navy' => 'bg-navy-50 text-navy-700',
'gold' => 'bg-gold-50 text-gold-700',
'amber' => 'bg-amber-50 text-amber-700',
'red' => 'bg-red-50 text-red-700',
'blue' => 'bg-blue-50 text-blue-700',
];
$iconClass = $tones[$tone] ?? $tones['brand'];
$iconPath = match($icon) {
'cart' => '
{{ $label }}
{{ $value }}
@if($trend !== null){{ $trend >= 0 ? '▲' : '▼' }} {{ abs($trend) }}%
@endif