@extends('layouts.app') @section('center')
| ID | MSN | Device ID | Meter Date & Time | Total Active kWh (Import) | Total Active kWh (Export) | Total Absolute Active kWh | Total Reactive kVARh (Import) | Reading Mode | Sync Status | Action | |
| {{ $row->id }} | {{ $row->msn }} | {{ $row->global_device_id }} | {{ optional($row->meter_datetime)->format('Y-m-d H:i') }} | {{ number_format($row->active_energy_pos_tl, 2) }} | {{ number_format($row->active_energy_neg_tl, 2) }} | {{ number_format($row->active_energy_abs_tl, 2) }} | {{ number_format($row->reactive_energy_pos_tl, 2) }} | @if($row->reading_mode == 1) Automatic @else Manual @endif | @if($row->is_synced == 1) Synced @else Pending @endif | View Details | |
| @if(request()->filled('from') || request()->filled('to') || request()->filled('DeviceId')) No billing data found for the selected filters. @else Select a Device ID and/or date range above and click Filter to view billing records. @endif | |||||||||||