@extends('admin.booking.layouts.invoice_en') @section('invoice_content_en')

Guest Name

{{ ucwords($userDetails->title ?? '') }} {{$userDetails->firstName ?? '' }}  {{ $userDetails->lastName ?? ''}}

Rehlte ID: {{ $bookingDetail->booking_ref ?? '' }}

VAT Reg.No:
Rehlte Invoice No:
Invoice Date:
Total Amount Due:
{{ 'N/A'}}
{{ 'N/A'}}
{{ !empty($editedHotelDetails->booking_date) ? \Carbon\Carbon::parse($editedHotelDetails->booking_date)->format('d-m-Y') : '-' }}
{!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->grandTotal ?? 0 }}
@if(isset($paymentDetails->isAddOnUsed) && $paymentDetails->isAddOnUsed) @endif @if(isset($paymentDetails->isCouponUsed) && $paymentDetails->isCouponUsed) @endif @if(isset($paymentDetails->isRedeemUsed) && $paymentDetails->isRedeemUsed) @endif @if(isset($paymentDetails->isWalletUsed) && $paymentDetails->isWalletUsed) @endif
Service Description Quantity Amount

#Hotel

{{ $hotelDetails->hotelDetails->DisplayName ?? '' }}

#adults : {{ $adult ?? '' }}

#children : {{ $child ?? '' }}

#checkIn : {{ \Carbon\Carbon::parse($searchDetails->stay->checkIn)->format('d-m-Y') ?? ''}}

#checkOut : {{ \Carbon\Carbon::parse($searchDetails->stay->checkOut)->format('d-m-Y') ?? '' }}

{{$hotelDetails->selectedRooms->RoomType ?? 'N/A' }} - {{ $hotelDetails->selectedRooms->RoomName ?? 'N/A' }} - {{ $hotelDetails->selectedRooms->RoomClass ?? 'N/A' }}

{{ $adult+$child }}

{!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->totalPrice ?? 0}}

Grant Total : Subtotal {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->totalPrice ?? 0}}
{{ amountToWord($paymentDetails->grandTotal ?? 0) }} ServiceFee {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->markupServiceFee ?? 0 }}
Addon Amount {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->addOnAmount ?? 0 }}
Coupon Amount ( - ) {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->couponAmount ?? 0 }}
Redeem Amount ( - ) {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->redeemAmount ?? 0 }}
Wallet Amount ( - ) {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->walletAmount ?? 0 }}
Grand Total {!! getCurrencyImage($paymentDetails->currency ?? '﷼') !!} {{ $paymentDetails->grandTotal ?? 0 }}
@endsection