Assign Room(s)

{{ __('You can Edit, Delete the guests & Book Room') }}

Back to Profile
Booking Ref. No.: {{ $rooms->booking_id }}
No. of Rooms Requested: {{ $rooms->num_rooms }}
Floor Preference : {{ $rooms->floor_preference }}
Number of days : {{ $rooms->num_days }}
Number of rooms available for selection below is : {{ $room_available_today }} (Total available rooms may vary. To keep it correct, regularly check-out the expired bookings.)
@php $floorRooms = [ 'Ground' => 8, 'First' => 12, 'Second' => 7, 'Third' => 10, ]; $roomCounter = 0; @endphp @foreach ($floorRooms as $floorName => $roomCount)
{{ $floorName }} Floor:
@for ($i = 1; $i <= $roomCount; $i++) @php $roomIndex = $roomCounter; $roomLabel = substr($floorName, 0, 1) . str_pad($i, 2, '0', STR_PAD_LEFT); $room = $total_rooms[$roomIndex] ?? null; @endphp
@php $roomCounter++; @endphp @endfor
@endforeach
Submit