{{ __('Vehicle Expense Report') }}

{{ __('Vehicle Expense Report') }}

{{ __('Reports') }} › {{ __('Total fuel spend per vehicle over the selected period.') }}

@include('reports._filters', ['showVehicle' => true, 'showDriver' => false])
{{ __('Total Fuel Cost') }}
{{ number_format($totals['cost'], 2) }}
{{ __('Total Litres') }}
{{ number_format($totals['litres'], 2) }}
@if ($rows->isEmpty())
{{ __('No fuel spend matches the selected filters.') }}
@else @foreach ($rows as $row) @endforeach
{{ __('Vehicle') }} {{ __('Fill-ups') }} {{ __('Litres') }} {{ __('Fuel Cost') }}
{{ $row['vehicle']->plate }} {{ $row['entryCount'] }} {{ number_format($row['litres'], 2) }} {{ number_format($row['cost'], 2) }}
@endif