@extends('layouts.app') @section('content')
Unprocessed Readings @if(request('property_id')) @php $selectedProperty = \App\Models\Property::find(request('property_id')); @endphp @if($selectedProperty) For {{ $selectedProperty->PropName }} @endif @endif
Date Customer Account No Reading Consumption Type Actions
Loading...

Loading unprocessed readings...

Processed History @if(request('property_id')) @php $selectedProperty = \App\Models\Property::find(request('property_id')); @endphp @if($selectedProperty) For {{ $selectedProperty->PropName }} @endif @endif
@forelse($readings as $reading) @empty @endforelse
Date Customer Account No Reading Consumption Type Actions
{{ \Carbon\Carbon::parse($reading->ReadingDate)->format('M d, Y') }} {{ \Carbon\Carbon::parse($reading->ReadingDate)->diffForHumans() }}
{{ $reading->customer->CustomerName ?? 'N/A' }}
Unit {{ $reading->unit->UnitIdentity ?? 'N/A' }}
{{ $reading->customer->AccountNo ?? 'N/A' }}
{{ number_format($reading->Reading) }}
@if($reading->PrvReading)
Prev: {{ number_format($reading->PrvReading) }}
@endif
{{ number_format($reading->Consumption) }} {{ $reading->ConsType }}

No meter readings found

@if($readings->hasPages()) @endif
@push('styles') @endpush @push('scripts') @endpush @endsection