{{ __('Trip Report') }}

{{ __('Trip Report') }}

{{ __('Reports') }} › {{ __('Trips over the selected period.') }}

@include('reports._filters', ['showVehicle' => true, 'showDriver' => true])
{{ __('Total Trips') }}
{{ $totals['count'] }}
@foreach ($totals['byStatus'] as $status => $count)
{{ $status }}
{{ $count }}
@endforeach
@if ($rows->isEmpty())
{{ __('No trips match the selected filters.') }}
@else @foreach ($rows as $trip) @endforeach
{{ __('Date') }} {{ __('Vehicle') }} {{ __('Driver') }} {{ __('Route') }} {{ __('Status') }}
{{ $trip->date->format('M j, Y') }} {{ $trip->vehicle?->plate ?? '—' }} {{ $trip->driver?->name ?? '—' }} {{ $trip->pickup_location }} → {{ $trip->dropoff_location }} {{ $trip->status->label() }}
@endif