{{ $pole->global_device_id }}
Last Update: {{ $pole->effective_last_update ?? 'No Data' }}
{{ $sourceText }}
Click to view CN devices
Current
{{ number_format((float) $pole->sum_current, 2) }}
A
Voltage
{{ number_format((float) $pole->avg_voltage, 2) }}
V
Apparent Power
{{ number_format((float) $pole->total_kva, 2) }}
kVA
Energy
{{ number_format((float) $pole->total_consumption, 2) }}
kWh
Power Factor
{{ $displayPf }}
Neutral Current
{{ number_format((float) $pole->nc, 2) }}
A
Neutral Loss
{{ number_format((float) $pole->nc_loss_kw, 3) }}
kW
CN Online
{{ (int) $pole->online_connections }}
/ {{ (int) $pole->total_connections }}
Connected Devices
{{ $pole->connected_devices->count() }} Devices
@forelse($pole->connected_devices as $device)
{{ (int) $device->is_online === 1 ? 'ONLINE' : 'OFFLINE' }}
{{ number_format((float) $device->sum_current, 2) }} A
{{ number_format((float) $device->avg_voltage, 2) }} V
{{ number_format((float) $device->total_kwh, 2) }} kWh
No connected CN device found for this pole.
@endforelse