{{ $estimate->estimate_number }}
# | @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($estimate->currency->currency_code) !!}) |
---|---|---|---|---|---|---|
{{ ++$count }} |
{{ $item->item_name }}@if(!is_null($item->item_summary))
{!! nl2br(pdfStripTags($item->item_summary)) !!}
@endif
@if ($item->estimateItemImage)
@endif |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} |
@endif
{{ $item->quantity }}@if($item->unit)
|
{{ currency_format($item->unit_price, $estimate->currency_id, false) }} |
{{ $item->tax_list }} | {{ currency_format($item->amount, $estimate->currency_id, false) }} |
@if($invoiceSetting->hsn_sac_code_show) | @endif | @lang("modules.invoices.subTotal") | {{ currency_format($estimate->sub_total, $estimate->currency_id, false) }} | |||
@if($invoiceSetting->hsn_sac_code_show) | @endif | @lang("modules.invoices.discount") | {{ currency_format($discount, $estimate->currency_id, false) }} | |||
@if($invoiceSetting->hsn_sac_code_show) | @endif | {{ $key }} | {{ currency_format($tax, $estimate->currency_id, false) }} | |||
@lang("modules.invoices.total") | {{ currency_format($estimate->total, $estimate->currency_id, false) }} {!! htmlentities($estimate->currency->currency_code) !!} |
@if (!is_null($estimate->note))
@lang('app.note')
{!! nl2br($estimate->note) !!}
@endif
@lang('modules.invoiceSettings.invoiceTerms')
{!! nl2br($invoiceSetting->invoice_terms) !!}
{!! nl2br($invoiceSetting->other_info) !!}
@endif @if (isset($taxes) && $invoiceSetting->tax_calculation_msg == 1)@if ($estimate->calculate_tax == 'after_discount') @lang('messages.calculateTaxAfterDiscount') @else @lang('messages.calculateTaxBeforeDiscount') @endif
@endif@lang('app.signature')
({{ $estimate->sign->full_name }})
@endif@lang('modules.projects.otherInfo')
{{ $field->label }}
@if( $field->type == 'text' || $field->type == 'password' || $field->type == 'number' || $field->type == 'textarea') {{$estimate->custom_fields_data['field_'.$field->id] ?? '-'}} @elseif($field->type == 'radio') {{ !is_null($estimate->custom_fields_data['field_'.$field->id]) ? $estimate->custom_fields_data['field_'.$field->id] : '-' }} @elseif($field->type == 'select') {{ (!is_null($estimate->custom_fields_data['field_'.$field->id]) && $estimate->custom_fields_data['field_'.$field->id] != '') ? $field->values[$estimate->custom_fields_data['field_'.$field->id]] : '-' }} @elseif($field->type == 'checkbox') {{ !is_null($estimate->custom_fields_data['field_'.$field->id]) ? $estimate->custom_fields_data['field_'.$field->id] : '-' }} @elseif($field->type == 'date') {{ !is_null($estimate->custom_fields_data['field_'.$field->id]) ? \Carbon\Carbon::parse($estimate->custom_fields_data['field_'.$field->id])->translatedFormat($estimate->company->date_format) : '--'}} @endif |