{{ mb_ucwords(company()->company_name) }}
{!! nl2br(default_address()->address) !!}
{{ company()->company_phone }}
@if($creditNoteSetting->show_gst == 'yes' && !is_null($creditNoteSetting->gst_number))
@lang('app.gstIn'): {{ $creditNoteSetting->gst_number }}
@endif
@lang('app.menu.issues') @lang('app.date'): |
{{ $creditNote->issue_date->format(company()->date_format) }} |
@if($invoiceNumber)
@lang('app.invoiceNumber'): |
{{ $invoiceNumber->invoice_number }} |
@endif
@lang('app.status'): |
{{ mb_ucwords($creditNote->status) }} |
{{ $creditNoteSetting->credit_note_prefix }}{{ $creditNote->original_cn_number }}
@if(!is_null($creditNote->project) && !is_null($creditNote->project->client))
@if(!is_null($creditNote->project->client))
@lang('modules.credit-notes.billedTo'):
{{ mb_ucwords($creditNote->project->client->name) }}
{{ mb_ucwords($creditNote->project->clientDetails->company_name) }}
{!! nl2br($creditNote->project->clientDetails->address) !!}
{{ $creditNote->project->client->email }}
@if($creditNoteSetting->show_gst == 'yes' && !is_null($creditNote->project->clientDetails->gst_number))
@lang('app.gstIn'): {{ $creditNote->project->clientDetails->gst_number }}
@endif
@endif
@if (($invoiceSetting->show_project == 1) && (isset($creditNote->project)))
@lang("modules.invoices.projectName"):
{{ $creditNote->project->project_name }}
@endif
@endif
# |
@lang("modules.credit-notes.item") |
@if($invoiceSetting->hsn_sac_code_show)
@lang("app.hsnSac") |
@endif
@lang("modules.credit-notes.qty") |
@lang("modules.credit-notes.unitPrice") |
@lang("modules.invoices.tax") |
@lang("modules.credit-notes.price") ({!! htmlentities($creditNote->currency->currency_code) !!}) |
@foreach($creditNote->items as $item)
@if($item->type == 'item')
{{ ++$count }} |
{{ ucfirst($item->item_name) }}
@if (!is_null($item->item_summary))
{!! nl2br(strip_tags($item->item_summary, ['p', 'b', 'strong', 'a'])) !!}
@endif
@if ($item->creditNoteItemImage)
@endif
|
@if($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} |
@endif
{{ $item->quantity }} |
{{ currency_formatter($item->unit_price, '') }} |
{{ strtoupper($item->tax_list) }} |
{{ currency_formatter($item->amount, '') }} |
@endif
@endforeach
@lang("modules.credit-notes.subTotal"): |
{{ currency_formatter($creditNote->sub_total, '') }} |
@if($discount != 0 && $discount != '')
@lang("modules.credit-notes.discount"): |
-{{ currency_formatter($discount, '') }} |
@endif
@foreach($taxes as $key=>$tax)
{{ mb_strtoupper($key) }}: |
{{ currency_formatter($tax, '') }} |
@endforeach
@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) !!}