{{ session('success') }}
| Date | Trip & Vehicle | Status | Financials | Actions |
|---|---|---|---|---|
| {{ $payment->date ? $payment->date->format('d M Y') : $payment->created_at->format('d M Y') }} |
{{ $payment->trip->location ?? 'Trip #'.$payment->trip_id }}
{{ $payment->trip->vehicle->vehicle_number ?? '' }} •
{{ $payment->trip->driver->driver_name ?? '' }}
Trip Date: {{ $payment->trip->date?->format('d M Y') }}
|
{{ $payment->status }}
@if($payment->method)
Via: {{ $payment->method }}
@endif
|
Trip Rent: ₹{{ number_format($payment->trip->rent_amount, 2) }}
Last Payment: ₹{{ number_format($payment->paid, 0) }}
Total Paid: ₹{{ number_format($payment->trip->rent_amount - $payment->balance, 0) }}
Balance: ₹{{ number_format($payment->balance, 0) }}
|