Kaataru
Ride Receipt
{{ $receipt['date'] ?? 'N/A' }}
@if (!empty($receipt['mapImageBase64']))
Map
@endif
Trip Route
Pickup Location {{ $receipt['pickup'] ?? 'N/A' }}
Dropoff Location {{ $receipt['destination'] ?? 'N/A' }}
Trip Details
Distance {{ $receipt['distance'] ?? 'N/A' }} Duration {{ $receipt['time'] ?? 'N/A' }} Vehicle {{ $receipt['vehicleType'] ?? 'N/A' }}
Ride Information
Passenger
Name {{ $receipt['customerName'] ?? 'N/A' }}
Email {{ $receipt['customerEmail'] ?? 'N/A' }}
Driver
Name {{ $receipt['driverName'] ?? 'N/A' }}
Vehicle @if (isset($receipt['vehicleMake']) && $receipt['vehicleMake'] != 'N/A') {{ $receipt['vehicleMake'] }} {{ $receipt['vehicleModel'] ?? '' }} @else N/A @endif
@if (isset($receipt['vehicleTagNumber']) && $receipt['vehicleTagNumber'] != 'N/A')
License Plate {{ $receipt['vehicleTagNumber'] }}
@endif
Ride Cost {{ $receipt['amount'] ?? '$0.00' }}
{{--
Driver Commission {{ $receipt['driverEarnings'] ?? '$0.00' }}
Kaataru {{ $receipt['adminComission'] ?? '$0.00' }}
--}}
Payment Method: {{ $receipt['paymentType'] ?? 'N/A' }}