@props(['title', 'value' => null, 'description' => '', 'type' => 'info', 'icon' => null]) @php $colors = [ 'success' => [ 'text' => 'text-emerald-600', ], 'warning' => [ 'text' => 'text-amber-600', ], 'error' => [ 'text' => 'text-red-600', ], 'info' => [ 'text' => 'text-blue-600', ], ]; $currentColor = $colors[$type] ?? $colors['info']; // Icon SVG definitions $icons = [ 'quantity' => '', 'warning' => '', 'oversell' => '', 'vat' => '', ]; $iconSvg = $icons[$icon] ?? null; @endphp
{{ $title }}
@if ($value !== null) {{ $value }} @else {{ $slot }} @endif
@if ($description) {{ $description }} @endif
@if ($iconSvg)
{!! $iconSvg !!}
@endif