@lang('app.description') |
@if ($invoiceSetting->hsn_sac_code_show)
@lang("app.hsnSac") |
@endif
@lang('modules.invoices.qty') |
@lang("modules.invoices.unitPrice")
({{ $estimate->currency->currency_code }})
|
@lang("modules.invoices.tax") |
@lang("modules.invoices.amount")
({{ $estimate->currency->currency_code }}) |
@foreach ($estimate->items as $item)
@if ($item->type == 'item')
{{ $item->item_name }} |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code }} |
@endif
{{ $item->quantity }}@if($item->unit) {{ $item->unit->unit_type }}@endif |
{{ currency_format($item->unit_price, $estimate->currency_id, false) }}
|
{{ $item->tax_list }} |
{{ currency_format($item->amount, $estimate->currency_id, false) }}
|
@if ($item->item_summary || $item->estimateItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->estimateItemImage)
@endif
|
@endif
@endif
@endforeach
|
@lang("modules.invoices.subTotal") |
{{ currency_format($estimate->sub_total, $estimate->currency_id, false) }}
|
@if ($discount != 0 && $discount != '')
@lang("modules.invoices.discount") |
{{ currency_format($discount, $estimate->currency_id, false) }}
|
@endif
@foreach ($taxes as $key => $tax)
{{ $key }} |
{{ currency_format($tax, $estimate->currency_id, false) }}
|
@endforeach
@lang("modules.invoices.total") |
{{ currency_format($estimate->total, $estimate->currency_id, false) }}
|
|