|
Dear {{ $booking['customer']['first_name'] }} {{ $booking['customer']['last_name'] }},
Your reservation has been confirmed. Please review your itinerary below carefully.
|
👤 CUSTOMER INFORMATION
|
{{-- Customer name prominent --}}
|
{{ strtoupper(substr($booking['customer']['first_name'], 0, 1)) }}
|
CUSTOMER NAME
{{ $booking['customer']['first_name'] }} {{ $booking['customer']['last_name'] }}
|
|
|
{{-- Contact numbers 2-column --}}
|
|
{{-- Email --}}
@if(!empty($booking['customer']['email']))
|
✉ EMAIL
{{ $booking['customer']['email'] }}
|
@endif
{{-- Payment method --}}
|
💳 PAYMENT METHOD
|
@if($booking['payment_info']['payment_type'] === 1) Cash
@elseif($booking['payment_info']['payment_type'] === 2) Cheque
@elseif($booking['payment_info']['payment_type'] === 3) Credit Card
@elseif($booking['payment_info']['payment_type'] === 4) Direct Account
@endif
|
|
@if ($booking['service_settings']['service_type_id'] === 4)
@include('emails.partials.schedule_reservation_summary', [
'reservation' => $booking['reservation'],
'reservationId' => $reservationIds[0]
])
@if ($booking['service_settings']['is_round_trip'])
@include('emails.partials.schedule_reservation_summary', [
'reservation' => $booking['reservation_2'],
'reservationId' => $reservationIds[1]
])
@endif
@else
@include('emails.partials.reservation_summary', [
'reservation' => $booking['reservation'],
'service_settings' => $booking['service_settings'],
'reservationId' => $reservationIds[0]
])
@if ($booking['service_settings']['is_round_trip'])
@include('emails.partials.reservation_summary', [
'reservation' => $booking['reservation_2'],
'service_settings' => $booking['service_settings'],
'reservationId' => $reservationIds[1]
])
@endif
@endif
📄 Important Information
|
🎫 How to Use Your Web-Ticket
Please hand your Credit Card to the Driver at time of Travel.
We do not charge Credit Card before your service is rendered.
|
|
✈ Upon Arrival at Kansas City International Airport
We will meet and greet you at the baggage claim for your airline with a sign
bearing your name approximately within 20 minutes after your flight arrives.
STAY INSIDE AT THE BAGGAGE CLAIM.
If you do not see your driver once you have retrieved your luggage, please
contact our Customer Service at
913-722-4311.
|
|
🚫 Cancellation Policy
You must call
(913) 722-4311
or toll free
1-800-888-8294
at least 4 hours before your scheduled pick-up to cancel.
Failure to cancel in time will result in a full trip charge.
Rates may be adjusted at the company's discretion. Additional wait time charges
may apply for flight delays or excess luggage.
|
|
🛡 Limitations of Liability
The Company is not responsible for delays caused by weather, traffic,
mechanical failure, or conditions beyond its control. Any customer expenses
arising from such delays — including missed flights or travel connections —
are the sole responsibility of the customer. Company liability shall not
exceed the cost of the trip in question.
|
|
🕐 Pick-up Time
Although The Company may advise on appropriate pick-up times, times are
set at the sole discretion of the customer. Late arrivals caused by a
customer-selected late pick-up time are the sole responsibility of the customer.
|
|
🧳 Lost Items
Passengers are responsible for their personal belongings. We accept no
liability for lost, stolen, damaged, or misplaced items. Return shipping
costs for left-behind items must be paid by the owner. Upon reaching your
destination, please verify all your belongings are with you.
|
|