@lang('app.estimate') {{ (is_null($estimate->estimate_number)) ? '#'.$estimate->id : $estimate->estimate_number }}
@lang("modules.estimates.validTill"): {{ $estimate->valid_till->format($global->date_format) }}
| # | @lang("modules.invoices.item") | @lang("modules.invoices.qty") | @lang("modules.invoices.unitPrice") | @lang("modules.invoices.price") |
|---|---|---|---|---|
| {{ ++$count }} | {{ ucfirst($item->item_name) }}@if(!is_null($item->item_summary)){{ $item->item_summary }} @endif |
{{ $item->quantity }} |
{!! htmlentities($estimate->currency->currency_symbol) !!}{{ number_format((float)$item->unit_price, 2, '.', '') }} |
{!! htmlentities($estimate->currency->currency_symbol) !!}{{ number_format((float)$item->amount, 2, '.', '') }} |
| @lang("modules.invoices.subTotal") | {!! htmlentities($estimate->currency->currency_symbol) !!}{{ number_format((float)$estimate->sub_total, 2, '.', '') }} | |||
| @lang("modules.invoices.discount") | -{!! htmlentities($estimate->currency->currency_symbol) !!}{{ number_format((float)$discount, 2, '.', '') }} | |||
| {{ strtoupper($key) }} | {!! htmlentities($estimate->currency->currency_symbol) !!}{{ number_format((float)$tax, 2, '.', '') }} | |||
| @lang("modules.invoices.total") | {!! htmlentities($estimate->currency->currency_symbol) !!}{{ number_format((float)$estimate->total, 2, '.', '') }} | |||
@lang("app.note"): Here {!! htmlentities($estimate->currency->currency_symbol) !!} refers to {!! $estimate->currency->currency_code !!}
@if(!is_null($estimate->note))
{!! nl2br($estimate->note) !!}
@endif