Credit Note
{{ $creditNote->credit_note_number }}
@php $money = fn ($value) => 'R '.number_format((float) $value, 2); $legalIdentityLines = $company->legalIdentityLines(); @endphp
{{ $creditNote->credit_note_number }}
{{ $creditNote->reason }}
@if (! $creditNote->isFinanciallyActive())Draft credit notes are recorded for review and do not reduce invoice balances until issued or applied.
@elseif ($creditNote->type === AppModelsCreditNote::TYPE_ADJUSTMENT)This adjustment reduces the invoice collectible balance without recording cash returned to the client.
@elseThis refund credit records money returned or due back to the client.
@endif @if ($creditNote->type === \App\Models\CreditNote::TYPE_REFUND)Refund method: {{ $creditNote->refund_method ?: 'Not recorded' }}
Refund reference: {{ $creditNote->refund_reference ?: 'Not recorded' }}
@endif