@lang('app.description') |
@if($invoiceSetting->hsn_sac_code_show)
@lang("app.hsnSac") |
@endif
@lang("modules.invoices.qty") |
@lang("modules.invoices.unitPrice") |
@lang("modules.invoices.tax") |
@lang("modules.invoices.amount")
({{ $order->currency->currency_code }}) |
@foreach ($order->items as $item)
@if ($item->type == 'item')
{{ ucfirst($item->item_name) }}
|
@if($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} |
@endif
{{ $item->quantity }} |
{{ currency_formatter($item->unit_price, '') }} |
{{ strtoupper($item->tax_list) }} |
{{ currency_formatter($item->amount, '') }} |
@if ($item->item_summary != '' || $item->orderItemImage)
{{-- DOMPDF HACK FOR RENDER IN TABLE --}}