| 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) }} | |||