@include('layouts.header')
@include('layouts.success_toast')
| Action |
Booking No |
Booking Date |
Hotel Name |
Check-In |
Check-Out |
Total Amount |
Payment Status |
Booking Status |
Address |
Address Lane 2 |
State |
City |
Pincode |
{{-- EG. Contact Name |
EG. Contact No. |
EG. Contact Relation | --}}
|
@if (isset($bookingDetail) && $bookingDetail->booking_status == "pending")
@else
@endif
{{--
--}}
|
{{ $bookingDetail->booking_code ?? "" }}
|
{{ $bookingDetail->created_at ?? "" }}
|
{{ $bookingDetail->hotel_name }} |
{{ $bookingDetail->check_in_date }} |
{{ $bookingDetail->check_out_date }} |
{{ $bookingDetail->total_amount }} |
{{ $bookingDetail->payment_status }} |
{{ $bookingDetail->booking_status }} |
{{ $bookingDetail->address }} |
{{ $bookingDetail->address_lane_2 }} |
{{ $bookingDetail->state_name }} |
{{ $bookingDetail->city_name }} |
{{ $bookingDetail->pincode }} |
{{-- {{ $bookingDetail->emergency_contact_name }} |
{{ $bookingDetail->emergency_contact_mobile }} |
{{ $bookingDetail->emergency_contact_relation }} | --}}
@if (isset($bookingDetail) && $bookingDetail->booking_status == "pending")
@endif
| Action |
Hotel Name |
Room Name |
Base Price |
Assigned Room No. |
Allowed Adult's |
Allowed Children's |
No. of Extra Bed |
@foreach ($roomList as $item)
|
@if (isset($bookingDetail) && $bookingDetail->booking_status == "pending")
@else
@endif
|
{{ $bookingDetail->hotel_name ?? "" }}
{{-- --}}
{{-- Angular Project --}}
|
{{ $item->roomtypedetail->title ?? "" }} |
{{ $item->hotelroomdetail->base_price ?? "" }} |
{{ $item->assign_room_no ?? "" }} |
{{ $item->hotelroomdetail->no_of_adults ?? "" }} |
{{ $item->hotelroomdetail->no_of_children ?? "" }} |
{{ $item->no_of_extra_bed ?? 0 }} |
{{-- {{ (($item->hotelroomdetail->per_extra_bed_price ?? 0) * ($item->no_of_extra_bed ?? 0)) }} | --}}
@endforeach
{{-- ADD NEW ROOM MODEL START--}}
Add New Room
Adding a new room will be added to the hotel.
{{-- ADD NEW ROOM MODEL END --}}
{{-- Edit ROOM MODEL START --}}
Edit Room
You can edit the room details for this booking below. Changes will be updated for the hotel.
{{-- Edit ROOM MODEL END --}}
@if (isset($bookingDetail) && $bookingDetail->booking_status == "pending")
@endif
| Action |
Booking No |
Name |
Mobile No. |
Email |
Gender |
{{-- Date of Birth | --}}
Nationality |
Guest Type |
Id Type |
Id File |
@foreach ($guestsList as $item)
|
@if (isset($bookingDetail) && $bookingDetail->booking_status == "pending")
@else
@endif
|
{{ $bookingDetail->booking_code ?? "" }}
{{-- --}}
{{-- Angular Project --}}
|
{{ $item->full_name }} |
{{ $item->mobile_no }} |
{{ $item->email }} |
{{ $item->gender }} |
{{-- {{ $item->dob }} | --}}
{{ $item->nationality }} |
{{ $item->guest_type }} |
{{ $item->id_type }} |
 }}) |
@endforeach
@if ($bookingDetail->booking_status == "pending" || $bookingDetail->booking_status == "confirmed")
@endif
@if ($bookingDetail->booking_status == "checked_in")
Check-Out Booking
@endif
Subtotal:
{{ config('app.CURRENCY') }} {{ $subTotal ?? 0 }}
Extra Bed:
{{ config('app.CURRENCY') }} {{ $extra_bed_price ?? 0 }}
({{ $extra_no_of_beds ?? 0 }} Bed's)
Total:
{{ config('app.CURRENCY') }} {{ $total ?? 0 }}
{{-- ADD NEW GUEST MODEL START --}}
Add New Guest
Adding a new guest will be added to the booking.
{{-- ADD NEW GUEST MODEL END --}}
{{-- EDIT NEW GUEST MODEL START --}}
Edit Guest
Please edit the guest details below. Once you save, the changes will be applied to this booking.
{{-- EDIT NEW GUEST MODEL END --}}
{{-- MANNUAL PAYMENT START --}}
Manual Payment
Please fill the form below to add a manual payment for this booking. Ensure to verify payment details before submission.
{{-- MANNUAL PAYMENT END --}}
{{-- SEND PAYMENT LINK START--}}
{{-- SEND PAYMENT LINK END--}}
@include('layouts.footer')