@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')
({{ $invoice->currency->currency_code }}) |
@foreach ($invoice->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, '') }} |
{{ strtoupper($item->tax_list) }} |
{{ currency_formatter($item->amount, '') }} |
@if ($item->item_summary != '' || $item->invoiceItemImage)
{{-- DOMPDF HACK FOR RENDER IN TABLE --}}