@props(['title', 'value' => 0, 'delta' => 0, 'trend' => 'stable', 'format' => 'number', 'hint' => null]) @php $formatted = match($format) { 'currency' => '$' . number_format((float) $value, 2), 'percent' => number_format((float) $value, 1) . '%', default => number_format((float) $value), }; $deltaAbs = number_format(abs((float) $delta), 1); $badgeClass = $trend === 'up' ? 'badge-phoenix-success' : ($trend === 'down' ? 'badge-phoenix-danger' : 'badge-phoenix-secondary'); $icon = $trend === 'up' ? 'fa-caret-up' : ($trend === 'down' ? 'fa-caret-down' : 'fa-minus'); @endphp
{{ $title }}

{{ $formatted }}

@if($hint) {{ $hint }} @endif
{{ $deltaAbs }}%