@extends('Main.layout.app') @push('preload') @endpush @push('styles') @endpush @section('content')

Enquiry Details

Service Information
Service Type:
{{($enquiry->service_type_id != "")? ucwords($enquiry->service_type->title): "-"}}
@if($enquiry->add_limousine || $enquiry->add_lounge)
Add-Ons:
{{ ($enquiry->add_limousine)?"Limousine":""}}{{(($enquiry->add_limousine)&&($enquiry->add_lounge))?" | ":" "}} {{ ($enquiry->add_lounge)?"Lounge":""}}
@endif @if($enquiry->pickOrDropAddress != "")
Pick-up / Drop-off Address:
{{ $enquiry->pickOrDropAddress}}
@endif @if($enquiry->message != "")
Message:
{{ $enquiry->message}}
@endif
Airport & Flight Information
Origin Airport:
{{ucwords($enquiry->originAirport ) ?? "-"}}
@if($enquiry->classOfTravel_id !="")
Class of Travel:
{{ucwords($enquiry->travelclass->title)}}
@endif
{{($enquiry->service_type_id == 4)? "Departure": "Arrival"}} Flight Number
{{$enquiry->flightNumber ?? "-"}}
@if($enquiry->service_type_id == 5)
Transit Flight Number:
{{$enquiry->transitFlightNumber ?? "-"}}
@endif @if($enquiry->service_type_id == 5 || $enquiry->service_type_id == 2)
Arrival Date & Time:
{{($enquiry->arrivalDate !='')?date('d/M/Y',strtotime($enquiry->arrivalDate)):"-"}} & {{($enquiry->arrivalTime !="")?date("h:i:a",strtotime($enquiry->arrivalTime)):"-"}}
@endif @if($enquiry->service_type_id == 5 || $enquiry->service_type_id == 4)
Departure Date & Time:
{{($enquiry->departureDate !='')?date('d/M/Y',strtotime($enquiry->departureDate)):"-"}} & {{($enquiry->departureTime !="")?date("h:i:a",strtotime($enquiry->departureTime)):"-"}}
@endif
Passenger Information
Full Name:
{{ ucwords($enquiry->titleName)." ".ucwords($enquiry->firstName)." ". ucwords($enquiry->lastName) }}
Contact Number:
{{($enquiry->countryCode != "")?"+$enquiry->countryCode":""}} {{$enquiry->contactNumber}}
Email:
{{ $enquiry->email }}
Adults:
{{ $enquiry->adults ?? "0"}}
Children:
{{ $enquiry->children ?? "0"}}
Infant:
{{ $enquiry->infants ?? "0"}}
@if(($enquiry->request_status_id)==6 || ($enquiry->request_status_id)==5 || ($enquiry->request_status_id)==4)
Price Details
Amount:
${{number_format(($enquiry->totalAmount+$enquiry->limousine_amount+$enquiry->lounge_amount + $enquiry->markup_amount ),2)}}
Credit Card Charges :
${{number_format($enquiry->creditcardCharges,2)}}
Total Amount:
${{number_format(($enquiry->totalAmount+$enquiry->limousine_amount+$enquiry->lounge_amount + $enquiry->markup_amount + $enquiry->creditcardCharges),2)}}
@endif
General Terms & Conditions
  • Airports around the world are highly sensitive security clearance required areas. Often, Security Agencies, Airport Authorities and Governments impose unforeseen security restrictions based on their assessment of the security situation at the Airport or even for undisclosed reasons. In some cases, all Airport Assistance services are suspended without notice by Security Agencies, Airport Authorities and Governments which may result in our inability to provide confirmed services due to suspension of services. In such cases, we will provide 100.00% refund of fees paid to us but we will have no choice but to express our regret for not providing the service for reasons beyond our control.
  • Failure to contact JODOGO, in case the Guest cannot find the Greeter, will result as 'Passenger No Show' and no refund will be offered.
  • The charges for amendment will be as follows: Within 24 hours of scheduled service time: 100.00% of total booking price Within 48 hours of scheduled service time: 50% of total booking price More than 48 hours of scheduled service time: USD 15.00 or 10.00% of the total booking price whichever is higher.
  • The charges for cancellation will be as follows: Within 48 hours of scheduled service time: 100.00% of total booking price More than 48 hours of scheduled service time: USD 15.00 or 10.00% of the total booking price whichever is higher.
  • The 4% card charges are non-refundable in all cases of cancellation or dispute because they are incurred by the bank
  • Any complaints or concerns related to the completed greet to be intimated to the team via email within 24 hours of the greet completion to consider for refund or compensation if applicable.
@if($enquiry->request_status_id == 5 || $enquiry->request_status_id == 4)
@csrf
@error('terms') {{ $message }} @enderror

Please ensure the availability with the operations if you wish to make the payment within 48 hours of service time.

@endif
@endsection