{{ $invoice->invoice_number }}
{{ optional($invoice->billing_period_start)->format('d M Y') }} - {{ optional($invoice->billing_period_end)->format('d M Y') }}
Issued
{{ optional($invoice->issue_date)->format('d M Y') }}
Total
R {{ number_format((float) $invoice->grand_total, 2) }}
Paid
R {{ number_format($invoicePaid, 2) }}
Balance
R {{ number_format($invoiceBalance, 2) }}
{{ $invoice->statusLabel() }}
@can('record-payments')
@if ($invoice->isCollectible())
Record payment
@endif
@endcan
View invoice