@props(['status']) @php $colors = match($status->value ?? $status) { 'yes' => 'bg-green-100 text-green-800', 'no' => 'bg-red-100 text-red-800', 'unknown' => 'bg-gray-100 text-gray-600', default => 'bg-gray-100 text-gray-600', }; $label = method_exists($status, 'label') ? $status->label() : $status; @endphp {{ $label }}