@extends('layouts.web') @section('page-title', 'Customer Details') @section('link-active-2', 'active') @section('main-container')
@csrf

Traveller Details

Customer Name: {{$customer->name}}
Customer Address: {{$customer->address}}
Customer Phone No.: {{$customer->phone_number}}
Customer Email: {{$customer->email}}
Start From: {{$route->start_from}}({{$route->end_to}})
Destination: {{$subroute->name}}
Vehicle Number: {{Str::upper($depature->registration_number)}}
Ticket Number: {{$booked->ticket_number}}
Seat Number: {{$booked->sit_number}} {{$booked->vip}}
Boarding Point: {{$booked->boarding_point}}
Reporting Time: {{date_format(date_create($booked->date_depature), 'd M Y')}}, {{date_format(date_create($depature->reporting_time), 'H:i A')}}
Departure: {{date_format(date_create($booked->date_depature), 'd M Y')}}, {{date_format(date_create($depature->depature_time), 'H:i A')}}
Expected Arrival: {{date_format(date_create($depature->expected_arrival_time), 'd M Y H:i A')}}

Payment Details

@if($booked->payment_mode != "Cash") @endif
Ticket Status: Pending

This ticket is in pending waiting for payment approve

Payment Details: {{$booked->payment_mode}}
Fare: {{number_format($booked->fare, 2)}} TZS

Ticket Details

Ticket Number: {{$booked->ticket_number}}
Seat Number: {{$booked->sit_number}} {{$booked->vip}}
QR: CODE @php $date_m = date_format(date_create($booked->date_depature), 'd M Y');; $price_m = number_format($booked->fare, 2); $messages = "Dear Customer $customer->name\n\n"; $messages .= "Your Ticket has been successfully processed\n"; $messages .="Depature Date: \n"; $messages .="Ticket Number: $booked->ticket_number\n"; $messages .="Start From: $route->start_from\n"; $messages .="Destination: $route->end_to\n"; $messages .="Seat Number: $booked->sit_number\n"; $messages .="Boarding Point: $booked->boarding_point\n"; $messages .="Cost: $price_m TZS\n"; $messages .="\nThank you for Choosing Aifola Express"; $url = "https://chart.googleapis.com/chart?chs=145x145&cht=qr&chl=$messages&choe=UTF-8"; @endphp
Expired/Auto Canceled: If the ticket will not be paid within 1 hour it will be cancelled or expired by system

How To Pay your ticket

Contact us if you have problem on how to pay your ticket or click the link below to learn

Learn more here how to pay your ticket


Please Note:

  1. Price listed does not include luggage price
  2. Passenger will allowed to board freely with two handbags only, and extra bag will be charged.
  3. Ensure information provided is correct
  4. You will receive confirmation SMS/Email once your payment is confirmed
  5. Any booking unpaid until expiration date will automatically be cancelled
  6. Fares are not guaranteed until Aifola Express confirms your booking and payment is made in full
  7. Disclaimer: Aifola Express may refuse carriage of you or your baggage if, in the exercise of our reasonable discretion, we determine either that the payment of your fare is fraudulent or the booking of your seat has been done fraudulently or unlawfully
@endsection @push('scripts') @endpush