@extends('layouts.admin') @section('title', 'Rekap Per Warga') @section('admin_content')

{{ $resident->name }}

{{ $resident->address }} - {{ $resident->phone }}

@foreach($resident->dues as $d)@endforeach
Periode Total Dibayar Sisa Status
{{ $d->period }} Rp {{ number_format($d->totalBill(),0,',','.') }} Rp {{ number_format($d->paid_amount,0,',','.') }} Rp {{ number_format($d->remaining(),0,',','.') }} {{ $d->status }}
@endsection