Guest{{ $transport->guest ? $transport->guest->first_name.' '.$transport->guest->last_name : '—' }}
Service{{ ucfirst(str_replace('_',' ',$transport->service_type)) }}
Scheduled{{ $transport->scheduled_at?->format('M j, Y H:i') }}
Charge{{ $transport->charge ? $currency.' '.number_format($transport->charge, 2) : '—' }}
Pickup{{ $transport->pickup_location }}
Dropoff{{ $transport->dropoff_location }}
@if($transport->flight_details)
Flight{{ $transport->flight_details }}
@endif
@if($transport->vehicle)
Vehicle{{ $transport->vehicle }}
@endif
@if($transport->driver)
Driver{{ $transport->driver }}
@endif