@php switch ($pack->sitReg) { case 'A': $statusColor = 'bg-green-500'; $statusIcon = 'fa-check-circle'; $statusLabel = "Ativo"; break; case 'I': $statusColor = 'bg-red-500'; $statusIcon = 'fa-times-circle'; $statusLabel = "Inativo"; break; default: $statusColor = 'bg-yellow-500'; $statusIcon = 'fa-warning'; $statusLabel = "N/A"; break; } @endphp