List of Room Reservation Request
{{ session()->get('error') }}
@elseif (session()->has('success'))Well done !!!
{{ session()->get('success') }}
@endif| Reservation For | Affiliated Club Id | Name | Check In Date | Check Out Date | Room Type | No Of Rooms | No Of Pax | Membership No | Contact No | Remarks | Created At | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $room->reservation_for }} | {{ $room->affiliatedClub->club_name ?? "" }} | {{ $room->name }} | {{ $room->check_in_date }} | {{ $room->check_out_date }} | @php $roomTypeMap = [ '1' => 'Grand Stand Cottage', '2' => 'Suite', '3' => 'Tolly Terrace Deluxe Room', '4' => 'Tolly Tower Junior Suite', ]; $roomType = $roomTypeMap[(string) $room->room_type] ?? (string) $room->room_type; @endphp{{ $roomType ?? '-' }} | {{ $room->no_of_rooms }} | {{ $room->no_of_pax }} | {{ $room->membership_no }} | {{ $room->contact_no }} | {{ $room->email }} | {{ $room->remarks }} | {{ optional($room->created_at)->format('Y-m-d') }} |