Live Telematics & CCTV Surveillance Hub

@if($activeCount > 0) {{ $activeCount }} {{ Str::plural('TOUR', $activeCount) }} LIVE @else STANDBY • NO ACTIVE VEHICLES @endif

Real-time satellite GPS fleet tracking radar, multi-channel live vehicle CCTV video matrix, and real-time operational telemetry.

{{ now()->setTimezone('Asia/Kolkata')->format('H:i:s') }} IST
Total Fleet Units
{{ $totalVehicles }}

Registered Fleet Vehicles

Active Sweeping
{{ $activeCount }}

Currently on Tour

Standby / In Depot
{{ $standbyCount + $depotCount }}

Parked at Central Hub

Distance Swept Today
{{ number_format($totalDistanceSweptToday, 1) }} KM

Cumulative Daily Telematics

@if($activeCount > 0)

Satellite GPS Fleet Tracking Radar

@foreach($fleetData as $v) @php $isMatchingFilter = $mapFilter === 'all' || ($mapFilter === 'active' && $v['status'] === 'active_sweeping') || ($mapFilter === 'standby' && $v['status'] === 'standby') || ($mapFilter === 'depot' && $v['status'] === 'depot'); @endphp @if($isMatchingFilter) @endif @endforeach
{{ number_format($initialLat, 4) }}° N, {{ number_format($initialLng, 4) }}° E | {{ $initialLabel }}

CCTV Surveillance Matrix

@foreach($cctvChannels as $key => $cam) @if($activeCameraChannel === 'all' || $activeCameraChannel === $key)
{{ $cam['name'] }} {{ date('Y-m-d H:i') }}
{{ $cam['location'] }}
{{ $cam['resolution'] }} {{ $cam['status'] }}
@endif @endforeach
Live Telemetry Stream ● Online
@foreach($fleetData as $v)
{{ $v['vehicle_number'] }} ({{ $v['driver_name'] }})
{{ $v['speed'] > 0 ? number_format($v['speed'], 1).' km/h' : '0 km/h' }} {{ $v['last_ping'] }}
@endforeach
@else

Satellite GPS Fleet Tracking Radar

Radar In Standby Mode

No Vehicles Currently Active on Tour

Satellite GPS tracking radar and live breadcrumb trajectory mapping are in standby. The live map will activate automatically once a driver initiates a sweeping tour.

Depot Fleet Status {{ count($fleetData) }} Registered Units
@forelse($fleetData as $v)
{{ $v['vehicle_number'] }} ({{ $v['driver_name'] }})
Parked at Depot
@empty

No vehicles registered yet.

@endforelse

CCTV Surveillance Matrix

Feeds Offline
@foreach(['CAM 01 — Front Sweeper', 'CAM 02 — Rear Vacuum', 'CAM 03 — Driver Cockpit', 'CAM 04 — Central Depot'] as $index => $camName)

{{ $camName }}

FEED OFFLINE
@endforeach
Live Telemetry Stream ● Standby

Live telemetry speed, sensor data, and live video feeds will broadcast automatically when an active sweeping tour begins.

@endif