{{ $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 }} |
{{ currency_formatter($item->unit_price, '') }} |
{{ currency_formatter($item->amount, '') }} |
@lang("modules.credit-notes.subTotal") | {{ currency_formatter($creditNote->sub_total, '') }} | |||
@lang("modules.credit-notes.discount") | -{{ currency_formatter($discount, '') }} | |||
{{ strtoupper($key) }} | {{ currency_formatter($tax,'') }} | |||
@lang("modules.credit-notes.total") | {{ currency_formatter($creditNote->total, '') }} | |||
@lang('modules.credit-notes.creditAmountUsed') | {{ currency_formatter($creditNote->creditAmountUsed(), '') }} | |||
@lang('modules.credit-notes.creditAmountRemaining') | {{ currency_formatter($creditNote->creditAmountRemaining(), '') }} |
@if(!is_null($creditNote->note))
{!! nl2br($creditNote->note) !!}
@endif
@if($creditNote->status == 'open')
{!! nl2br($creditNoteSetting->credit_note_terms) !!}
@endif