@php $cls = match ($status) { 'Paid' => 'bg-green-100 text-green-800', 'Approved' => 'bg-blue-100 text-blue-800', 'Pending' => 'bg-amber-100 text-amber-800', 'Partially Paid' => 'bg-indigo-100 text-indigo-800', 'Cancelled' => 'bg-gray-200 text-gray-600', 'Void' => 'bg-red-100 text-red-700', default => 'bg-gray-100 text-gray-700', }; @endphp {{ $status }}