| @lang('app.description') |
@if($invoiceSetting->hsn_sac_code_show)
@lang("app.hsnSac") |
@endif
@lang("modules.invoices.qty") |
@lang("modules.invoices.unitPrice")
({{ $creditNote->currency->currency_code }}) |
@lang("modules.invoices.amount")
({{ $creditNote->currency->currency_code }}) |
@foreach ($creditNote->items as $item)
@if ($item->type == 'item')
| {{ ucfirst($item->item_name) }} |
@if($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} |
@endif
{{ $item->quantity }} |
{{ number_format((float) $item->unit_price, 2, '.', '') }} |
{{ number_format((float) $item->amount, 2, '.', '') }} |
@if ($item->item_summary != '')
| {{ $item->item_summary }} |
@endif
@endif
@endforeach
|
| @lang("modules.invoices.subTotal") |
{{ number_format((float) $creditNote->sub_total, 2, '.', '') }} |
@if ($discount != 0 && $discount != '')
| @lang("modules.invoices.discount") |
{{ number_format((float) $discount, 2, '.', '') }} |
@endif
@foreach ($taxes as $key => $tax)
| {{ strtoupper($key) }} |
{{ number_format((float) $tax, 2, '.', '') }}
|
@endforeach
| @lang("modules.invoices.total") |
{{ number_format((float) $creditNote->total, 2, '.', '') }} |
| @lang('modules.credit-notes.creditAmountUsed') |
{{ number_format((float)$creditNote->creditAmountUsed(), 2, '.', '') }}
{{ $creditNote->currency->currency_code }}
|
| @lang('app.adjustment') @lang('app.amount') |
{{ number_format((float) $creditNote->adjustment_amount, 2, '.', '') }}
{{ $creditNote->currency->currency_code }}
|
| @lang('modules.credit-notes.creditAmountRemaining') |
{{ number_format((float) $creditNote->creditAmountRemaining(), 2, '.', '') }}
{{ $creditNote->currency->currency_code }} |
|
| {!! nl2br($creditNote->note) !!} |
{!! nl2br($invoiceSetting->invoice_terms) !!} |