- {{ __('Date') }}
- {{ $trip->date->format('M j, Y') }}
- {{ __('Departure Time') }}
-
{{ $trip->departure_time ? \Illuminate\Support\Carbon::parse($trip->departure_time)->format('g:i A') : '—' }}
- {{ __('Pickup') }}
- {{ $trip->pickup_location }}
- {{ __('Dropoff') }}
- {{ $trip->dropoff_location }}
@if ($trip->notes)
- {{ __('Notes') }}
- {{ $trip->notes }}
@endif
- {{ __('Added by') }}
-
{{ $trip->creator?->name ?? __('Unknown') }} · {{ $trip->created_at->format('M j, Y g:i A') }}