@extends('freight-client.layouts.app') @section('title', 'Find Drivers') @section('head') @endsection @section('content')
Green pins are drivers who are online & available now with a shared location.
| Driver | Phone | Truck | Availability | Current Location | Last Update |
|---|---|---|---|---|---|
| {{ $d->full_name }} | {{ $d->phone ?: '—' }} | {{ optional($d->vehicles->first())->truck_type ?: '—' }} | @if($d->is_available) Online @else Offline @endif | {{ $d->current_location ?: '—' }} | {{ $d->last_location_at ? $d->last_location_at->diffForHumans() : '—' }} |
No active drivers found yet.
@endif