{{ $estimate->estimate_number }}
# | @lang("modules.invoices.item") | @lang("app.hsnSac") | @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)
| {{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} | {{ $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) }} |
@lang("modules.invoices.subTotal") | {{ currency_format($estimate->sub_total, $estimate->currency_id, false) }} | |||||
@lang("modules.invoices.discount"): @if($estimate->discount_type == 'percent') {{$estimate->discount}}% @else {{ currency_format($estimate->discount, $estimate->currency_id) }} @endif | {{ currency_format($discount, $estimate->currency_id, false) }} | |||||
{{ $key }} | {{ currency_format($tax, $estimate->currency_id, false) }} | |||||
@lang("modules.invoices.total") | {{ currency_format($estimate->total, $estimate->currency_id, false) }} |
@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')
@foreach($fields as $field) @endforeach
{{ $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 |