@extends('layouts.dashboard') @section('title', 'Live Tracking Dashboard') @section('content')
Active Employees
Active Visits
Today's Visits
Alerts
| Employee | Current Location | Last Update | Actions |
|---|---|---|---|
|
{{ $employee->name }}
{{ $employee->employee_id }}
|
@if($visit && $visit->current_address)
{{ Str::limit($visit->current_address, 30) }}
@else
Not available
@endif
|
@if($visit) {{ $visit->updated_at->diffForHumans() }} @else N/A @endif | |
|
No active employees at the moment |
|||
| Employee & Client | Status | Duration | Actions |
|---|---|---|---|
|
{{ $visit->employee->name ?? 'Unknown' }}
{{ $visit->client->name ?? 'Unknown Client' }}
{{ $visit->scheduled_date->format('H:i') }}
|
In Progress | @if($visit->started_at) {{ $visit->started_at->diffForHumans(null, true) }} @else Not started @endif | Track |
|
No active visits at the moment |
|||