@php $map = [ 'pending' => ['En attente', 'bg-yellow-50 text-yellow-700'], 'processing' => ['En cours', 'bg-blue-50 text-blue-700'], 'on-hold' => ['En attente paiement', 'bg-orange-50 text-orange-700'], 'completed' => ['Complétée', 'bg-green-50 text-green-700'], 'cancelled' => ['Annulée', 'bg-gray-100 text-gray-500'], 'refunded' => ['Remboursée', 'bg-purple-50 text-purple-700'], 'failed' => ['Échouée', 'bg-red-50 text-red-700'], ]; [$label, $class] = $map[$status] ?? ['Inconnu', 'bg-gray-100 text-gray-500']; @endphp {{ $label }}