@extends('layouts.admin') @section('content')
Track all invoices and payment status.
| Invoice ID | Tenant | Unit | Period | Amount | Due Date | Status |
|---|---|---|---|---|---|---|
| #INV-{{ str_pad($billing->id, 5, '0', STR_PAD_LEFT) }} | {{ $billing->user->name ?? '—' }} | {{ $billing->unit->name ?? '—' }} | {{ $billing->period }} | Rp {{ number_format($billing->amount) }} | {{ $billing->due_date }} | {{ ucfirst($billing->status) }} |
|
No billings yet. Create one now. |
||||||