{{ $creditNote->cn_number }}
@lang('app.menu.issues') Date: {{ $creditNote->issue_date->format($global->date_format) }}
@if($creditNote->status == 'open')
@lang('app.dueDate'): {{ $creditNote->due_date->format($global->date_format) }}
@endif
@if($invoiceNumber)
@lang('app.invoiceNumber'): {{ $invoiceNumber->invoice_number }}
@endif
@lang('app.status'): {{ __('app.'.$creditNote->status) }}
# | @lang("modules.credit-notes.item") | @lang("modules.credit-notes.qty") | @lang("modules.credit-notes.unitPrice") ({!! htmlentities($creditNote->currency->currency_code) !!}) | @lang("modules.credit-notes.price") ({!! htmlentities($creditNote->currency->currency_code) !!}) |
---|---|---|---|---|
{{ ++$count }} | {{ ucfirst($item->item_name) }} |
{{ $item->quantity }} |
{{ number_format((float)$item->unit_price, 2, '.', '') }} |
{{ number_format((float)$item->amount, 2, '.', '') }} |
@lang("modules.credit-notes.subTotal") | {{ number_format((float)$creditNote->sub_total, 2, '.', '') }} | |||
@lang("modules.credit-notes.discount") | -{{ number_format((float)$discount, 2, '.', '') }} | |||
{{ strtoupper($key) }} | {{ number_format((float)$tax, 2, '.', '') }} | |||
@lang("modules.credit-notes.total") | {{ number_format((float)$creditNote->total, 2, '.', '') }} | |||
@lang('modules.credit-notes.creditAmountUsed') | {{ number_format((float)$creditNote->creditAmountUsed(), 2, '.', '') }} | |||
@lang('modules.credit-notes.creditAmountRemaining') | {{ number_format((float)$creditNote->creditAmountRemaining(), 2, '.', '') }} |
@if(!is_null($creditNote->note))
{!! nl2br($creditNote->note) !!}
@endif
@if($creditNote->status == 'open')
{!! nl2br($creditNoteSetting->credit_note_terms) !!}
@endif