{{ session('success') }}
| Date & Time | Vehicle | Trip Details | Fuel Details | Total | Actions |
|---|---|---|---|---|---|
|
{{ $entry->created_at->format('d M Y') }}
{{ $entry->created_at->format('h:i A') }}
|
{{ $entry->vehicle->vehicle_number ?? 'Unknown' }} |
@if($entry->trip)
{{ $entry->trip->location }}
{{ $entry->trip->date->format('d/m/y') }}
@else
No trip linked
@endif
|
Litre: {{ $entry->litre }} L
Price: ₹{{ number_format($entry->price, 2) }}/L
|
₹{{ number_format($entry->total, 2) }} | |
| No fuel entries found matching the criteria. | |||||