Status
@php
$statusColors = [
'pending' => 'bg-yellow-100 text-yellow-800',
'confirmed' => 'bg-green-100 text-green-800',
'cancelled' => 'bg-red-100 text-red-800',
'completed' => 'bg-blue-100 text-blue-800',
];
@endphp
{{ ucfirst($booking->status) }}