{{-- required meta tags --}} {{-- title --}}
{{ __('Booking Number:') }} | {{ '#' . $bookingInfo->booking_number }} |
---|---|
{{ __('Booking Date:') }} | {{ date_format($bookingInfo->created_at, 'M d, Y') }} |
{{ __('Room Name:') }} | {{ $bookingInfo->hotelRoom->roomContent->where('language_id', $userCurrentLang->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 |