Telematics & Operational Alerts Hub

Real-time detection for time duration deviations, off-route boundaries, excessive stoppages, speed limits, and incident logs.

Total Telematics Alerts
{{ $totalAlertsCount }}

Logged system-wide

Unresolved Alerts
{{ $unresolvedCount }}

Action Required

Critical / High Severity
{{ $criticalCount + $highCount }}

Critical: {{ $criticalCount }} | High: {{ $highCount }}

Time & Path Deviations
{{ $timeDeviationCount + $pathDeviationCount }}

Time: {{ $timeDeviationCount }} | Path: {{ $pathDeviationCount }}

Severity:
Status:
@if($alerts->isNotEmpty())
@foreach($alerts as $alert) @endforeach
Code & Severity Alert Title Vehicle & Driver Route & Location Variance Status Actions
{{ $alert->alert_code }} {{ $alert->severity }}
{{ $alert->title }}
{{ $alert->formatted_triggered_time }}
{{ $alert->vehicle?->vehicle_number ?? 'N/A' }}
{{ $alert->employee?->full_name ?? 'Unassigned' }}
{{ $alert->route?->name ?? 'Municipal Sector Route' }}
{{ $alert->location_name ?: 'GPS Segment' }}
@if($alert->threshold_value || $alert->actual_value)
Limit: {{ $alert->clean_threshold_value }}
Act: {{ $alert->clean_actual_value }}
@else Telemetry Logged @endif
{{ str_replace('_', ' ', $alert->status) }}
@if(auth()->user()?->isSuperAdmin()) @endif
{{ $alerts->links() }}
@else

No Telematics Alerts Found

There are currently no alerts matching your selected category filter or search query.

@endif
@if($showDetailModal && $selectedAlert)

Alert Telematics Inspection

Code: {{ $selectedAlert->alert_code }}  |  Severity: {{ ucfirst($selectedAlert->severity) }}

{{ $selectedAlert->formatted_type }} {{ $selectedAlert->status }}

{{ $selectedAlert->title }}

{{ $selectedAlert->description }}

Expected Threshold {{ $selectedAlert->threshold_value ?: 'Standard Telematics Threshold' }}
Actual Recorded Variance {{ $selectedAlert->actual_value ?: 'Variance Detected' }}
Assigned Vehicle: {{ $selectedAlert->vehicle?->vehicle_number ?? 'N/A' }}
Operator Driver: {{ $selectedAlert->employee?->full_name ?? 'N/A' }}
Assigned Route: {{ $selectedAlert->route?->name ?? 'N/A' }}
Location Segment: {{ $selectedAlert->location_name ?: 'GPS Waypoint' }}
Trigger Timestamp: {{ $selectedAlert->formatted_triggered_time }}
@endif @if($showResolveModal && $selectedAlert)

Update Alert Status ({{ $selectedAlert->alert_code }})

Update operational status and log dispatcher resolution remarks.

@endif @if($showCreateModal)

Simulate / Log Manual Telematics Alert

Manually trigger an operational alert or incident log for dispatcher testing.

@endif