{!! nl2br($global->address) !!}
{{ $global->company_phone }}
@lang('app.menu.issues') @lang('app.date'): {{ $creditNote->issue_date->format($global->date_format) }}
{{ $creditNote->cn_number }}
@if(!is_null($creditNote->project) && !is_null($creditNote->project->client))
@lang('app.billedTo'):
{{ ucwords($creditNote->project->client->name) }}
{{ ucwords($creditNote->project->client->company_name) }}
{!! nl2br($creditNote->project->client->address) !!}
{{ $creditNote->project->client->email }}
@if($creditNoteSetting->show_gst == 'yes' && !is_null($creditNote->project->client->gst_number))
@lang('app.gstIn'): {{ $creditNote->project->client->gst_number }}
@endif
@elseif(!is_null($creditNote->client))
@lang('app.billedTo'):
{{ ucwords($creditNote->client->name) }}
{{ ucwords($creditNote->client->company_name) }}
{!! nl2br($creditNote->client->address) !!}
{{ $creditNote->client->email }}
@if($creditNoteSetting->show_gst == 'yes' && !is_null($creditNote->client->gst_number))
@lang('app.gstIn'): {{ $creditNote->client->gst_number }}
@endif
@elseif(is_null($creditNote->client_id) && is_null($creditNote->project_id)) @if($creditNote->invoice->client)
@lang('app.billedTo'):
{{ ucwords($creditNote->invoice->client->name) }}
{{ ucwords($creditNote->invoice->client->company_name) }}
{!! nl2br($creditNote->invoice->client->address) !!}
{{ $creditNote->invoice->client->email }}
@if($creditNoteSetting->show_gst == 'yes' && !is_null($creditNote->invoice->client->gst_number))
@lang('app.gstIn'): {{ $creditNote->invoice->client->gst_number }}
@endif
@elseif($creditNote->invoice->project)
@lang('app.billedTo'):
{{ ucwords($creditNote->invoice->project->client->name) }}
{{ ucwords($creditNote->invoice->project->client->company_name) }}
{!! nl2br($creditNote->invoice->project->client->address) !!}
{{ $creditNote->invoice->project->client->email }}
@if($creditNoteSetting->show_gst == 'yes' && !is_null($creditNote->invoice->project->client->gst_number))
@lang('app.gstIn'): {{ $creditNote->invoice->project->client->gst_number }}
@endif
@endif @endif
@if($creditNote->status == 'open')
Due Date: {{ $creditNote->due_date->format($global->date_format) }}
@endif @if($invoiceNumber)
@lang('app.invoiceNumber'): {{ $invoiceNumber->invoice_number }}
@endif
@lang('app.status'): {{ __('app.'.$creditNote->status) }}

 

 

 

@if($invoiceSetting->hsn_sac_code_show) @endif @foreach($creditNote->items as $item) @if($item->type == 'item') @endif @endforeach
# @lang("modules.credit-notes.item")@lang('modules.invoices.hsnSacCode')@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, '.', '') }}
@if($discount != 0 && $discount != '') @endif @foreach($taxes as $key=>$tax) @endforeach
@lang("modules.credit-notes.subTotal"): {{ number_format((float)$creditNote->sub_total, 2, '.', '') }}
@lang("modules.credit-note.discount"): -{{ number_format((float)$discount, 2, '.', '') }}
{{ strtoupper($key) }}: {{ number_format((float)$tax, 2, '.', '') }}
{{ 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