@php $state = $getState(); $stateIcon = $getStateIcon() ?? ($state ? 'heroicon-o-check-circle' : 'heroicon-o-x-circle'); $stateColor = $getStateColor() ?? ($state ? 'success' : 'danger'); $stateColor = match ($stateColor) { 'danger' => 'text-danger-500', 'primary' => 'text-primary-500', 'success' => 'text-success-500', 'warning' => 'text-warning-500', default => 'text-gray-700', }; @endphp