@extends('layouts.app') @section('title', 'Invoices') @section('content')
Accounts receivable
Individual, application, renewal and corporate monthly invoices.
| Invoice | Account | Date | Total | Paid | Balance | Status |
|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} {{ str_replace('_', ' ', $invoice->invoice_type) }} |
{{ $invoice->customer?->full_name_en ?? $invoice->company?->name_en ?? 'General account' }} | {{ $invoice->invoice_date->format('d M Y') }} | AED {{ number_format((float) $invoice->total_amount, 2) }} | AED {{ number_format((float) $invoice->paid_amount, 2) }} | AED {{ number_format((float) $invoice->balance_due, 2) }} | {{ str_replace('_', ' ', $invoice->status) }} |
| No invoices found. | ||||||