@extends('layouts.app') @section('title', 'Device Map') @push('head') @endpush @section('content')
Device Map
USJ — Seafield Toll Plaza, LDP Northbound
{{-- Map --}}
Legend
BUKA (Active)
TUTUP (Inactive)
Unknown / Offline
{{-- Device cards sidebar --}}
Devices ({{ $devices->count() }})
@forelse($devices as $device)
{{ $device->name }}
{{ $device->last_status ?? 'unknown' }}
{{ $device->ip_address }}:{{ $device->port }}
@if($device->chainage || $device->highway)
{{ $device->chainage }} — {{ $device->highway }}
@endif @if($device->location)
{{ $device->location }}
@endif @if($device->latitude && $device->longitude)
{{ number_format($device->latitude, 4) }}°N, {{ number_format($device->longitude, 4) }}°E
@endif
@if($device->last_sent_mode) {{ strtoupper($device->last_sent_mode) }} {{ $device->last_sent_at?->format('d/m H:i') }} @else No data @endif
@empty
No devices configured.
@endforelse {{-- Highway info box --}}
Installation Info
LDP Northbound
USJ → Seafield Toll Plaza
KM6.1 NB & KM8.1 NB
Protocol: Huidu TCP :9527
Solar-powered LED panels
@endsection @push('scripts') @endpush