{{ __("Extra fields tracked on every trip for this customer — e.g. a Gatepass Number or Bill Number.") }}
@if ($customer->customFields->isEmpty()){{ __('No custom fields yet.') }}
@else{{ __('No trips recorded for this customer yet.') }}
| {{ __('Date') }} | {{ __('Vehicle') }} | {{ __('Driver') }} | {{ __('Pickup') }} | {{ __('Dropoff') }} | {{ __('Status') }} |
|---|---|---|---|---|---|
| {{ $trip->date->format('M j, Y') }} | {{ $trip->vehicle?->plate ?? '—' }} | {{ $trip->driver?->name ?? '—' }} | {{ $trip->pickup_location }} | {{ $trip->dropoff_location }} | {{ $trip->status->label() }} |