@php
$driver = $rideHistory->driver;
@endphp
Driver{{ $driver->name }}{{ $driver->whatsapp_no }}{{ $driver->vehicleBrand->name }} {{ $driver->vehicleModel->name }} ({{ $driver->vehicleColour->name }}) {{ $driver->vehicle_no }} |
Customer{{ $rideHistory->customer->name ?? "NA" }}{{ $rideHistory->customer->whatsapp_no ?? "NA" }} |
V Way Taxi - Ride Receipt |
|
|
Pickup Point : ({{ \Carbon\Carbon::parse($rideHistory->start_time, "Asia/Kolkata")->toDateTimeString() }}) {{ $rideHistory->pickup_address }} @isset($rideHistory->stop1_address) Stop Point 1 : {{ $rideHistory->stop1_address }} @endisset @isset($rideHistory->stop2_address) Stop Point 2 : {{ $rideHistory->stop2_address }} @endisset @isset($rideHistory->stop3_address) Stop Point 3 : {{ $rideHistory->stop3_address }} @endisset Drop Point : ({{ \Carbon\Carbon::parse($rideHistory->end_time, "Asia/Kolkata")->toDateTimeString() }}) {{ $rideHistory->drop_address }} |
|
| Booking ID | {{ $rideHistory->id }} |
| Trip Type | {{ $rideHistory->trip_type }} |
| Package Name | {{ $rideHistory->package_name }} |
| Total Distance | {{ $rideHistory->total_km }} |
| Total Duration | {{ $rideHistory->total_duration }} |
| Base Fare | Rs. {{ $rideHistory->base_fare }} |
| Fare / KM | Rs. {{ $rideHistory->fare_per_km }} |
| Total Discount | Rs. {{ $rideHistory->total_discount }} |
| Waiting Charge | Rs. {{ $rideHistory->waiting_fare }} |
| Driver Bata | Rs. {{ $rideHistory->excess_fare }} |
| Total Fare | Rs. {{ $rideHistory->total_fare }} |