@lang('modules.invoices.invoiceNumber'):
{{ $creditNote->invoice->invoice_number }}
@if ($creditNote)
@lang('app.credit-note'): {{ $creditNote->cn_number }}
@endif
@lang('modules.invoices.invoiceDate'):
{{ $creditNote->issue_date->format(global_setting()->date_format) }}
@lang('app.status'): {{ ucwords($creditNote->status) }}
# | @lang('modules.invoices.item') | @if ($invoiceSetting->hsn_sac_code_show)@lang('app.hsnSac') | @endif@lang('modules.invoices.qty') | @lang('modules.invoices.unitPrice') | @lang('modules.invoices.tax') | @lang('modules.invoices.price') ({!! htmlentities($creditNote->currency->currency_code) !!}) | |
---|---|---|---|---|---|---|---|
{{ ++$count }} |
{{ ucfirst($item->item_name) }}@if (!is_null($item->item_summary))
@endif |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} |
@endif
{{ $item->quantity }} |
{{ currency_formatter($item->unit_price, '') }} |
{{ $item->tax_list }} | {{ currency_formatter($item->amount, '') }} | |
@if ($invoiceSetting->hsn_sac_code_show) | @endif | @lang('modules.invoices.subTotal') | {{ currency_formatter($creditNote->sub_total, '') }} | ||||
@if ($invoiceSetting->hsn_sac_code_show) | @endif | @lang('modules.invoices.discount') | {{ currency_formatter($discount, '') }} | ||||
@if ($invoiceSetting->hsn_sac_code_show) | @endif | {{ strtoupper($key) }} | {{ currency_formatter($tax, '') }} | ||||
@lang('modules.credit-notes.total') | {{ currency_formatter($creditNote->total, '') }} | ||||||
@lang('modules.credit-notes.creditAmountUsed') | {{ currency_formatter($creditNote->creditAmountUsed(), '') }} | ||||||
@lang('app.adjustment') @lang('app.amount') | {{ currency_formatter($creditNote->adjustment_amount, '') }} | ||||||
@lang('modules.credit-notes.creditAmountRemaining') | {{ currency_formatter($creditNote->creditAmountRemaining(), '') }} |
@if (!is_null($creditNote->note))
{!! nl2br($creditNote->note) !!}
@endif
{!! nl2br($creditNoteSetting->invoice_terms) !!}