Drivers log into their panel to start/stop tours. Track real-time logs, route maps, and export analytical reports.
Filtered Logged Tours
● Calculated from GPS Coordinates
Accumulated Tour Duration
● Live 10s Driver Pings
| Duty Code | Vehicle | Assigned Driver | Start Time | End Time | Duration | Distance (KM) | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| @if($t->driverDuty) {{ $t->driverDuty->duty_code }} @else #TOUR-{{ str_pad($t->id, 5, '0', STR_PAD_LEFT) }} @endif @if($t->route || $t->driverDuty?->route) {{ $t->route->name ?? $t->driverDuty->route->name }} @endif |
{{ $t->vehicle->vehicle_number ?? 'Vehicle' }}
{{ $t->vehicle->category->name ?? 'Category' }}
|
{{ $t->employee->full_name ?? 'Driver Crew' }}
{{ $t->employee->employee_code ?? 'EMP-'.$t->employee_id }}
|
{{ $t->start_time ? $t->start_time->format('d M Y') : '—' }}
{{ $t->start_time ? $t->start_time->format('h:i A') : '' }}
|
@if($t->end_time)
{{ $t->end_time->format('d M Y') }}
{{ $t->end_time->format('h:i A') }}
@else
In Progress
@endif
|
{{ $t->formatted_duration }} | {{ number_format($t->total_distance_km, 3) }} KM | @if($t->status === 'completed') Completed @else In Progress @endif | |
|
No sweeping tour records found for selected filters. |
||||||||