@extends('layouts.admin_layout')
@section('content')
@section('title', 'View Booking')
customer Detail
Email Id |
{{ $booking_detail->customerEmail ?? '-' }} |
Phone No |
{{ $booking_detail->customerPhone ?? '-' }} |
Booking Detail
Location |
{{ $booking->city_name ?? '-' }} |
Checkin Date |
{{ $booking_detail->checkIn ?? '-' }} |
checkOut Date |
{{ $booking_detail->checkOut ?? '-' }} |
Days |
{{ $booking_detail->days ?? '-' }} |
NetPrice |
{{ $booking_detail->currency ?? '-' }} {{ $booking_detail->NetPrice ?? '-' }} |
Fare Type |
{{ $booking_detail->fareType ?? '-' }} |
Cancellation Policy |
{{ $booking_detail->cancellationPolicy ?? '-' }} |
Room Detail
@foreach($booking_detail->rooms as $key=>$room)
Room: {{ $room->name ?? '-' }} |
@foreach($room->paxDetails->name as $keypax=>$pax)
Pax-{{ $keypax+1 }}: {{ $pax ?? '-' }} |
@endforeach
@endforeach
@include('includes.admin.footer')
@stop