@lang("app.client"):

{{ ucwords($estimate->client->name) }}

{!! nl2br($estimate->client->address) !!}
@lang("modules.invoices.generatedBy"):

{{ ucwords($global->company_name) }}

@if(!is_null($settings))
{!! nl2br($global->address) !!}
P: {{ $global->company_phone }}
@endif

{{ (is_null($estimate->estimate_number)) ? '#'.$estimate->id : $estimate->estimate_number }}

@lang("modules.estimates.validTill"): {{ $estimate->valid_till->format($global->date_format) }}
@foreach($estimate->items as $item) @if($item->type == 'item') @endif @endforeach @if($discount != 0 && $discount != '') @endif @foreach($taxes as $tax) @endforeach
# @lang("modules.invoices.item") @lang("modules.invoices.qty") @lang("modules.invoices.unitPrice") ({!! htmlentities($estimate->currency->currency_code) !!}) @lang("modules.invoices.price") ({!! htmlentities($estimate->currency->currency_code) !!})
{{ ++$count }}

{{ ucfirst($item->item_name) }}

@if(!is_null($item->item_summary))

{{ $item->item_summary }}

@endif

{{ $item->quantity }}

{{ $item->unit_price }}

{{ $item->amount }}
      @lang("modules.invoices.subTotal") {{ $estimate->sub_total }}
      @lang("modules.invoices.discount") -{{ $discount }}
      {{ strtoupper($tax->item_name) }} {{ $tax->amount }}
@lang("modules.invoices.total") {{ $estimate->total }}

 


@if(!is_null($estimate->note)) {!! nl2br($estimate->note) !!}
@endif @if(!is_null(invoice_setting()->estimate_terms)) {!! nl2br(invoice_setting()->estimate_terms) !!}
@endif