{{ __('Fuel Entries') }}

Add Fuel
@if(session('success')) @endif
Clear
@forelse($fuelEntries as $entry) @empty @endforelse
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) }}
Edit
@csrf @method('DELETE')
No fuel entries found matching the criteria.
{{ $fuelEntries->links() }}