@isset($activeSettingMenu) @endisset @stack('styles')
@lang('app.estimate')

{{ ucwords(global_setting()->company_name) }}
@if (!is_null($settings)) {!! nl2br(default_address()->address) !!}
{{ global_setting()->company_phone }} @endif @if ($invoiceSetting->show_gst == 'yes' && !is_null($invoiceSetting->gst_number))
@lang('app.gstIn'): {{ $invoiceSetting->gst_number }} @endif


@lang('modules.estimates.estimatesNumber') {{ $estimate->estimate_number }}
@lang('modules.estimates.validTill') {{ $estimate->valid_till->format(global_setting()->date_format) }}
@if (($estimate->client || $estimate->clientDetails) && ($estimate->client->name || $estimate->client->email || $estimate->client->mobile || $estimate->clientDetails->company_name || $estimate->clientDetails->address) && (invoice_setting()->show_client_name == 'yes' || invoice_setting()->show_client_email == 'yes' || invoice_setting()->show_client_phone == 'yes' || invoice_setting()->show_client_company_name == 'yes' || invoice_setting()->show_client_company_address == 'yes'))

@lang("modules.invoices.billedTo")
@if ($estimate->client && $estimate->client->name && invoice_setting()->show_client_name == 'yes') {{ ucwords($estimate->client->name) }}
@endif @if ($estimate->client && $estimate->client->email && invoice_setting()->show_client_email == 'yes') {{ $estimate->client->email }}
@endif @if ($estimate->client && $estimate->client->mobile && invoice_setting()->show_client_phone == 'yes') {{ $estimate->client->mobile }}
@endif @if ($estimate->clientDetails && $estimate->clientDetails->company_name && invoice_setting()->show_client_company_name == 'yes') {{ ucwords($estimate->clientDetails->company_name) }}
@endif @if ($estimate->clientDetails && $estimate->clientDetails->address && invoice_setting()->show_client_company_address == 'yes') {!! nl2br($estimate->clientDetails->address) !!} @endif

@endif
@lang('modules.estimates.'.$estimate->status)
{!! $estimate->description !!}
@if ($invoiceSetting->hsn_sac_code_show) @endif @foreach ($estimate->items as $item) @if ($item->type == 'item') @if ($invoiceSetting->hsn_sac_code_show) @endif @if ($item->item_summary || $item->estimateItemImage) @endif @endif @endforeach
@lang('app.description') @lang("app.hsnSac") @lang("modules.invoices.qty") @lang("modules.invoices.unitPrice") ({{ $estimate->currency->currency_code }}) @lang("modules.invoices.tax") @lang("modules.invoices.amount") ({{ $estimate->currency->currency_code }})
{{ ucfirst($item->item_name) }}{{ $item->hsn_sac_code }}{{ $item->quantity }} {{ currency_formatter($item->unit_price, '') }} {{ $item->tax_list }} {{ currency_formatter($item->amount, '') }}
{!! nl2br(strip_tags($item->item_summary)) !!} @if ($item->estimateItemImage)

@endif
@if ($discount != 0 && $discount != '') @endif @foreach ($taxes as $key => $tax) @endforeach
@lang("modules.invoices.subTotal") {{ currency_formatter($estimate->sub_total, '') }}
@lang("modules.invoices.discount") {{ currency_formatter($discount, '') }}
{{ strtoupper($key) }} {{ currency_formatter($tax, '') }}
@lang("modules.invoices.total") {{ currency_formatter($estimate->total, '') }}
@foreach ($estimate->items as $item) @if ($item->type == 'item') @endif @endforeach @if ($discount != 0 && $discount != '') @endif @foreach ($taxes as $key => $tax) @endforeach
@lang('app.description') @if ($item->item_summary != '' || $item->estimateItemImage) @endif
{{ ucfirst($item->item_name) }}
{!! nl2br(strip_tags($item->item_summary)) !!} @if ($item->estimateItemImage)

@endif
@lang("modules.invoices.qty") {{ $item->quantity }}
@lang("modules.invoices.unitPrice") ({{ $estimate->currency->currency_code }}) {{ currency_formatter($item->unit_price, '') }}
@lang("modules.invoices.amount") ({{ $estimate->currency->currency_code }}) {{ currency_formatter($item->amount, '') }}
@lang("modules.invoices.subTotal") {{ currency_formatter($estimate->sub_total, '') }}
@lang("modules.invoices.discount") {{ currency_formatter($discount, '') }}
{{ strtoupper($key) }} {{ currency_formatter($tax, '') }}
@lang("modules.invoices.total") {{ currency_formatter($estimate->total, '') }}
@if (isset($taxes) && invoice_setting()->tax_calculation_msg == 1) @endif
@lang('app.note')

{!! $estimate->note ?? '--' !!}

@lang('modules.invoiceSettings.invoiceTerms')

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

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

@if ($estimate->sign)
@lang('modules.estimates.signature')

({{ $estimate->sign->full_name }})

@endif