@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')
{{ ucfirst($item->item_name) }} |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code }} |
@endif
{{ $item->quantity }} |
{{ currency_formatter($item->unit_price, '') }}
|
{{ $item->tax_list }} |
{{ currency_formatter($item->amount, '') }}
|
@if ($item->item_summary || $item->estimateItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->estimateItemImage)
@endif
|
@endif
@endif
@endforeach