@props(['title', 'value', 'link', 'type' => 'info', 'icon' => null, 'currency' => '']) @php $typeClasses = [ 'success' => [ 'text' => 'text-green-500', 'btn' => 'btn-success', ], 'error' => [ 'text' => 'text-red-500', 'btn' => 'btn-error', ], 'info' => [ 'text' => 'text-blue-500', 'btn' => 'btn-info', ], 'warning' => [ 'text' => 'text-orange-500', 'btn' => 'btn-warning', ], ]; $classes = $typeClasses[$type] ?? $typeClasses['info']; $icons = [ 'income' => '', 'cogs' => '', 'inventory' => '', 'returns' => '', ]; $iconSvg = $icons[$icon] ?? null; @endphp
@if ($iconSvg)
{!! $iconSvg !!}
@endif

{{ $title }}

{{ $value }} @if ($currency) {{ $currency }} @endif