@if($quotationId)
@csrf
{{-- Main form --}}
{{-- Guests section --}}
{{ __('hotel::modules.reservation.guestDetails') }}
@if(isset($guests[0]['id_proof_file']) && is_object($guests[0]['id_proof_file']))

{{ $guests[0]['id_proof_file']->getClientOriginalName() }}

@endif
{{-- Stay details --}}
{{ __('hotel::modules.checkIn.stayDetails') }}
@foreach($ratePlans as $plan) @endforeach
{{-- Rooms --}} @if(count($availableRooms) > 0)
{{ __('hotel::modules.reservation.selectRooms') }}
@foreach($availableRooms as $roomTypeId => $roomData)
{{ $roomData['room_type_name'] }}
{{ __('hotel::modules.reservation.available') }}: {{ $roomData['available'] }} | {{ __('hotel::modules.reservation.rate') }}: {{ currency_format($roomData['rate']) }}/{{ __('hotel::modules.reservation.night') }}
@endforeach
@else

{{ __('hotel::modules.reservation.selectDatesMessage') }}

@endif {{-- Extras --}} @if(count($extraServices) > 0)
{{ __('hotel::modules.reservation.extras') }}
@foreach($extraServices as $extra)
{{ $extra->name }}
{{ currency_format($extra->price) }}
@endforeach
@endif
{{-- Sidebar - Pricing summary --}}
{{ __('hotel::modules.reservation.bookingSummary') }}
{{ __('hotel::modules.reservation.roomsPrice') }} {{ currency_format($this->roomsTotal) }}
@if($this->extrasTotal > 0)
{{ __('hotel::modules.reservation.extrasPrice') }} {{ currency_format($this->extrasTotal) }}
@endif
{{ __('hotel::modules.reservation.subtotal') }} {{ currency_format($this->subtotal) }}
{{ __('hotel::modules.reservation.discount') }}
@if($apply_discount)
@endif @if($apply_discount && $discount_value > 0)
{{ __('hotel::modules.reservation.discountAmount') }} - {{ currency_format($this->discountAmount) }}
{{ __('hotel::modules.reservation.amountAfterDiscount') }} {{ currency_format($this->amountAfterDiscount) }}
@endif
@foreach($taxes as $tax) @endforeach
@if(!empty($tax_ids))
{{ __('hotel::modules.reservation.taxAmount') }} {{ currency_format($this->taxAmount) }}
@endif
{{ __('hotel::modules.reservation.total') }} {{ currency_format($this->totalAmount) }}
@if((float) $advance_paid > 0)
@endif
{{ __('hotel::modules.reservation.remainingAtCheckout') }} {{ currency_format($this->remainingBalance) }}
@foreach($statuses as $s) @endforeach
Update Quotation {{ __('app.cancel') }}
@endif