Bookings - @if($booking->status == 'Cancelled') {{ $booking->status }} @else {{ $booking->status }} @endif
Bookings - @if($booking->status == 'Cancelled') {{ $booking->status }} @else {{ $booking->status }} @endif
Arrival:
Departure:
Length of stay:
Total guests:
{{ $booking->guests }}Total rooms:
Addons:
@foreach($data->addOnData as $key)Total price:
Guest name:
{{ ucfirst($booking->guest_name) }} {{--{{ $booking->customer_country }}--}}@foreach($booking->room as $room) @if($room->display_name === NULL) {{ $room->roomtype->name }} @else {{ $room->display_name }} @endif @if(count($booking->room) > 1) , @endif @endforeach
- {{ $booking->checkin->format("M d, Y") }}
- {{ $booking->checkout->format("M d, Y") }} {{--
- --}} {{----}} {{--Non-smoking--}} {{-- --}}
{{ $booking->currency.' '.number_format((float)$booking->amount, 2) }}
Guest name :
{{ ucfirst($booking->guest_name) }}Max occupancy :
@foreach($booking->room as $room) {{ $room->accommodates }} , @endforeach guestsMeal Options :
{{ $booking->rateplan_code }}| Date | Rate | Price per night | |
|---|---|---|---|
| {{ $booking->checkin->format("d") }} - {{ $booking->checkout->format('d') }} {{ $booking->checkout->format('M') }} | Standard Rate | {{$booking->currency}} {{ number_format((float)$booking->amount / getNights($booking->checkin->format("Y-m-d"), $booking->checkout->format('Y-m-d')), 2) }} | |
| --}} {{--Subtotal--}} {{-- | --}} {{----}} {{-- | --}} {{--{{ $booking->currency }} {{ $booking->amount }}--}} {{-- | --}} {{--|
| --}} {{--City tax--}} {{-- | --}} {{----}} {{--{{ number_format((float)$booking->city_tax, 2) }}--}} {{-- | --}} {{----}} {{--+ {{ number_format((float)$booking->city_tax, 2) }}--}} {{-- | --}} {{--|
| --}} {{--Tax--}} {{-- | --}} {{----}} {{--{{ number_format((float)$booking->taxes, 2) }}--}} {{-- | --}} {{----}} {{--+ {{ number_format((float)$booking->taxes, 2) }}--}} {{-- | --}} {{--Nightly rates | Deals | Rate | @foreach( $booking->dailyRates as $dailyRate )
| {{ $dailyRate->date }} | {{ $dailyRate->deals }} | {{ number_format((float)$dailyRate->rate, 2) }} | |
| Sub-Total | {{ $booking->currency }} {{ $booking->dailyRates->sum('rate') }} | ||
| Taxes | {{ $booking->currency }} {{ $booking->taxes }} | ||
| Total room price (including tax) | @elseTotal room price | @endif{{ $booking->currency }} {{ number_format((float)$booking->amount, 2) }} |