Daily, weekly, monthly, driver, and owner-level reporting based on the stored rate snapshot for each load.
{{ number_format($totals['total_miles'] ?? 0, 2) }} total miles
Owner-level visibility into truck contribution, mileage, and average profit.
| Truck | Loads | Miles | Profit |
|---|---|---|---|
| {{ $item['truck'] }} | {{ $item['count'] }} | {{ number_format($item['miles'], 2) }} | ${{ number_format($item['profit'], 2) }} |
| No truck data available yet. | |||
Driver-level daily, weekly, monthly profit/loss and total mileage.
| Driver | Loads | Miles | Daily | Weekly | Monthly | Total Profit |
|---|---|---|---|---|---|---|
| {{ $item['driver'] }} | {{ $item['count'] }} | {{ number_format($item['miles'], 2) }} | ${{ number_format($item['daily_profit'], 2) }} | ${{ number_format($item['weekly_profit'], 2) }} | ${{ number_format($item['monthly_profit'], 2) }} | ${{ number_format($item['profit'], 2) }} |
| No driver analytics available yet. | ||||||