@php $addProductPermission = user()->permission('add_product'); @endphp @if (!in_array('clients', user_modules())) @lang('messages.enableClientModule') @lang('app.back') @else

@lang('app.estimate') @lang('app.details')


@method('PUT')
{{ invoice_setting()->estimate_prefix }}{{ invoice_setting()->estimate_number_separator }}

{!! $estimate->description !!}

@if ($addProductPermission == 'all' || $addProductPermission == 'added') @lang('app.add') @endif
@foreach ($estimate->items as $key => $item)
@if ($invoiceSetting->hsn_sac_code_show) @endif @if ($invoiceSetting->hsn_sac_code_show) @endif
@lang('app.description') @lang("app.hsnSac") @lang('modules.invoices.qty') @lang("modules.invoices.unitPrice") @lang('modules.invoices.tax') @lang('modules.invoices.amount')
@if (!is_null($item->product_id) && $item->product_id != 0) {{ $item->unit->unit_type }} @else @endif
{{ number_format((float) $item->amount, 2, '.', '') }}
estimateItemImage && $item->estimateItemImage->external_link) data-show-remove="false" @endif />
@endforeach

@lang('modules.invoices.subTotal') {{ number_format((float) $estimate->sub_total, 2, '.', '') }}
@lang('modules.invoices.discount')
{{ number_format((float) $estimate->discount, 2, '.', '') }}
@lang('modules.invoices.tax')
0.00
@lang('modules.invoices.total') {{ number_format((float) $estimate->total, 2, '.', '') }}

{!! nl2br($invoiceSetting->invoice_terms) !!}

@lang('app.save')
@lang('app.cancel')
@endif