| Invoice | Client | Work | Issued | Due | Amount | Status | |
|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | @if($invoice->client) {{ $invoice->client->name }} @else {{ $invoice->client_name }} @endif | {{ $invoice->productSummary() }} | {{ optional($invoice->issue_date)->format('d M Y') }} | {{ optional($invoice->due_date)->format('d M Y') }} | {{ $invoice->currency }} {{ number_format($invoice->total(), 2) }} | @if($invoice->status === 'paid') Paid {{ optional($invoice->paid_at)->format('d M Y') }} @else Unpaid @endif | @if($invoice->status !== 'paid') @endif |
| No client invoices yet. | |||||||
To receive an invoice: go to Transactions → pick the bank account → Credit → category Client Invoice, then select the invoice. The amount is credited to the account and the invoice is marked paid.
{{ $invoices->links() }}