@props([ 'title' => '', 'value' => '', 'subtitle' => '', 'icon' => '', 'color' => 'primary', 'trend' => null, 'trendValue' => null, 'trendLabel' => null, 'size' => 'default', 'href' => null, 'click' => null, ]) @php $bgColors = [ 'primary' => 'bg-primary', 'success' => 'bg-success', 'info' => 'bg-info', 'warning' => 'bg-warning', 'danger' => 'bg-danger', 'light' => 'bg-light', 'dark' => 'bg-dark', ]; $isLight = $color === 'light'; $bgClass = $bgColors[$color] ?? $bgColors['primary']; $sizeClasses = [ 'sm' => 'p-3', 'default' => 'p-4', 'lg' => 'p-5' ]; $paddingClass = $sizeClasses[$size] ?? $sizeClasses['default']; $isInteractive = $href || $click; @endphp