@props([ 'label' => null, 'value' => null, 'icon', 'color' => 'info', 'id' => null, 'url' => null, 'style' => 'flat', // 'flat' (horizontal) o 'small' (vertical) 'vibrant' => true, // Si es true, el fondo de toda la card tendrá el color 'alpineValue' => null // Variable de Alpine.js para x-text (usar alpine-value="expr") ]) @php $xValue = $alpineValue ?? null; @endphp @php $bgClass = $vibrant ? "bg-$color" : ""; $iconBgClass = $vibrant ? "" : "bg-$color"; $textColor = $vibrant ? "text-white" : ""; @endphp @if($style === 'flat') {{-- ESTILO HORIZONTAL (Vibrante o Sobrio) --}}
{{ $label }}
@endif {{ $slot }}