{{-- Bootstrap --}} {{-- Bootstrap Icons --}}
{{-- Summary Cards --}}
Total Transformers

{{ $totalTransformers }}

Online

{{ $onlineTransformers }}

Offline

{{ $offlineTransformers }}

Compensated PF

{{ $compensatedPfCount }}

{{-- Table --}}
Transformer PF Records
@forelse($transformers as $index => $row) @empty @endforelse
# Device ID Name Location Voltage Current kVA kW DB PF Calculated PF Final PF PF Status Device Status Last Update
{{ $index + 1 }} {{ $row->global_device_id ?? '-' }} {{ $row->device_name ?? '-' }} {{ $row->location ?? '-' }} {{ number_format($row->display_voltage ?? 0, 2) }} V
V1: {{ number_format($row->v1 ?? 0, 2) }}, V2: {{ number_format($row->v2 ?? 0, 2) }}, V3: {{ number_format($row->v3 ?? 0, 2) }}
{{ number_format($row->sum_current ?? 0, 2) }} A
I1: {{ number_format($row->i1 ?? 0, 2) }}, I2: {{ number_format($row->i2 ?? 0, 2) }}, I3: {{ number_format($row->i3 ?? 0, 2) }}
{{ number_format($row->calculated_kva ?? 0, 3) }} {{ number_format($row->calculated_kw ?? 0, 3) }} {{ number_format($row->avg_powerfactor ?? 0, 3) }} {{ number_format($row->calculated_pf ?? 0, 3) }} {{ number_format($row->final_pf ?? 0, 3) }} @if($row->pf_is_random)
Random compensated
@else
From kW/kVA
@endif
{{ $row->pf_status }} {{ $row->device_status }} @if(!empty($row->server_time_update_our_value)) {{ \Carbon\Carbon::parse($row->server_time_update_our_value)->format('d M Y h:i A') }} @else - @endif
No transformer records found.