@extends('layouts.admin') @section('content')

Billings & Payments

Track all invoices and payment status.

Create New Bill
@forelse($billings as $billing) @empty @endforelse
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.

@endsection