{{ ucwords($global->company_name) }}
{!! nl2br($global->address) !!}
{{ $global->company_phone }}
@if($invoiceSetting->show_gst == 'yes' && !is_null($invoiceSetting->gst_number))
@lang('app.gstIn'): {{ $invoiceSetting->gst_number }}
@endif
@lang('modules.lead.proposal'): #{{ $proposal->id }}
@lang('app.status'): {{ ucwords($proposal->status) }}
@lang('modules.estimates.validTill'): {{ $proposal->valid_till->format($global->date_format) }}
{{ $invoiceSetting->invoice_prefix }} {{ $proposal->original_invoice_number }}
@lang('modules.invoices.billedTo')
{{ ucwords($proposal->lead->client_name) }}
@if ($invoiceSetting->hsn_sac_code_show) @endif @foreach($proposal->items as $item) @if($item->type == 'item') @if ($invoiceSetting->hsn_sac_code_show) @endif @endif @endforeach
# @lang("modules.invoices.item")@lang("app.hsnSac")@lang("modules.invoices.qty") @lang("modules.invoices.unitPrice") {!! htmlentities($proposal->currency->currency_code) !!} @lang("modules.invoices.price") {!! htmlentities($proposal->currency->currency_code) !!}
{{ ++$count }} {{ ucfirst($item->item_name) }} @if(!is_null($item->item_summary))

{!! nl2br(strip_tags($item->item_summary)) !!}

@endif @if ($item->proposalItemImage)

@endif
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }}{{ $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.invoices.subTotal"): {{ number_format((float)$proposal->sub_total, 2, '.', '') }}
@lang("modules.invoices.discount"): {{ number_format((float)$discount, 2, '.', '') }}
{{ strtoupper($key) }}: {{ number_format((float)$tax, 2, '.', '') }}

@lang("modules.invoices.total"):

{{ number_format((float) $proposal->total, 2, '.', '') }}


@lang('app.note')
{!! nl2br($proposal->note) !!}

@lang('modules.invoiceSettings.invoiceTerms')
{!! nl2br($invoiceSetting->invoice_terms) !!}

@if (isset($taxes) && invoice_setting()->tax_calculation_msg == 1)

@if ($proposal->calculate_tax == 'after_discount') @lang('messages.calculateTaxAfterDiscount') @else @lang('messages.calculateTaxBeforeDiscount') @endif

@endif


@if ($proposal->signature)
@lang('app.signature')

({{ $proposal->signature->full_name }})

@endif