{{-- required meta tags --}} {{-- title --}} {{ __('ROOM_BOOKING_INVOICE') . ' | ' . config('app.name') }} {{-- fav icon --}} {{-- styles --}}

{{ __('ROOM_BOOKING_INVOICE') }}

@php $position = $bookingInfo->currency_text_position; $currency = $bookingInfo->currency_text; @endphp
{{ __('Booking_Number') }}: {{ '#' . $bookingInfo->booking_number }}
{{ __('Booking_Date') }}: {{ date_format($bookingInfo->created_at, 'M d, Y') }}
{{ __('Room_Name') }}: {{ $bookingInfo->hotelRoom->roomContent->where('language_id', $currentLanguageInfo->id)->first()->title }}
{{ __('Subtotal') }}: {{ $position == 'left' ? $currency . ' ' : '' }}{{ $bookingInfo->subtotal }}{{ $position == 'right' ? ' ' . $currency : '' }}
{{ __('Discount') }}: {{ $position == 'left' ? $currency . ' ' : '' }}{{ $bookingInfo->discount }}{{ $position == 'right' ? ' ' . $currency : '' }}
{{ __('Grand_Total') }}: {{ $position == 'left' ? $currency . ' ' : '' }}{{ $bookingInfo->grand_total }}{{ $position == 'right' ? ' ' . $currency : '' }}
{{ __('Customer_Name') }} : {{ $bookingInfo->customer_name }}
{{ __('Customer_Phone') }} : {{ $bookingInfo->customer_phone }}
{{ __('Paid_via') }} : {{ $bookingInfo->payment_method }}
{{ __('Payment_Status') }} : @if ($bookingInfo->payment_status == 1) {{ __('Complete') }} @else {{ __('Incomplete') }} @endif