{{ __('Reports') }}

Clear

Report Results ({{ $trips->total() }})

@php $totalRent = 0; $totalFuel = 0; $totalProfit = 0; @endphp @forelse($trips as $trip) @php $totalRent += $trip->rent_amount; $totalFuel += $trip->fuel_cost; $totalProfit += $trip->profit; @endphp @empty @endforelse @if($trips->count() > 0) @endif
Date Location Vehicle Driver Rent Fuel Profit
{{ $trip->date->format('d/m/Y') }} {{ $trip->location }} {{ $trip->vehicle->vehicle_number ?? '-' }} {{ $trip->driver->driver_name ?? '-' }} ₹{{ number_format($trip->rent_amount, 2) }} ₹{{ number_format($trip->fuel_cost, 2) }} ₹{{ number_format($trip->profit, 2) }}
No records found for the selected filters.
Page Totals: ₹{{ number_format($totalRent, 2) }} ₹{{ number_format($totalFuel, 2) }} ₹{{ number_format($totalProfit, 2) }}
{{ $trips->appends(request()->query())->links() }}