@php $be = $settings->be ?? []; $selectedRoom = $beRoom ?? $hotel->rooms->first(); $selectedPlan = $beRateplan ?? $hotel->ratePlans->first(); @endphp @if($hotel->rooms->isNotEmpty())
@if($selectedPlan) @endif
@endif @if($hotel->ratePlans->isNotEmpty())
@if($selectedRoom) @endif
@endif
@csrf @method('PUT')

Room Types

@foreach($hotel->rooms as $room)
{{ $room->name }}
id}", $room->description) }}" placeholder="Shown on booking page">
@endforeach

Rateplans

@foreach($hotel->ratePlans as $plan) @endforeach
Rateplan Display Name BE Ratio Extra Adult Extra Child Policy
{{ $plan->displayLabel() }}
@if($selectedRoom)

Room Amenities — {{ $selectedRoom->name }}

Each room type can have a maximum of 9.

@foreach($amenities as $key => $amenity) @endforeach
@endif @if($selectedPlan)

Rateplan Amenities — {{ $selectedPlan->displayLabel() }}

Each rateplan can have a maximum of 3. Tick Free breakfast here to show it on your booking page for this rate.

@foreach($amenities as $key => $amenity) @endforeach
@endif

Others

Cancellation Policies