@extends('layouts.app', ['pageTitle' => 'Invoices / Receivables', 'pageSubtitle' => 'Create customer invoices and receive payments']) @section('content')
| No | Customer | Date | Total | Paid | Status | Receive Payment |
|---|---|---|---|---|---|---|
| {{ $i->invoice_number }} | {{ $i->contact_name ?? 'N/A' }} | {{ $i->invoice_date }} | ₦{{ number_format($i->total_amount,2) }} | ₦{{ number_format($i->amount_paid,2) }} | {{ $i->status }} | @if($i->status !== 'paid')@endif |