@includeIf('invoices.pdf.invoice_pdf_css')
# | @lang('modules.invoices.item') | @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.price') ({!! htmlentities($order->currency->currency_code) !!}) |
---|---|---|---|---|---|---|
{{ ++$count }} |
{{ ucfirst($item->item_name) }}
@if (!is_null($item->item_summary))
{!! nl2br(strip_tags($item->item_summary, ['p', 'b', 'strong', 'a'])) !!} @endif @if ($item->purchaseItemImage)@endif |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} | @endif{{ $item->quantity }} {{ $item->unit->unit_type }} |
{{ currency_format($item->unit_price, $order->currency_id, false) }} | {{ strtoupper($item->tax_list) }} | {{ currency_format($item->amount, $order->currency_id, false) }} |
@lang('modules.invoices.subTotal'): | {{ currency_format($order->sub_total, $order->currency_id, false) }} |
---|---|
@lang('modules.invoices.discount'): | -{{ currency_format($discount, $order->currency_id, false) }} |
{{ mb_strtoupper($key) }}: | {{ currency_format($tax, $order->currency_id, false) }} |
@lang('modules.invoices.total'): | {{ currency_format($order->total, $order->currency_id, false) }} |
@if ($order->calculate_tax == 'after_discount') @lang('messages.calculateTaxAfterDiscount') @else @lang('messages.calculateTaxBeforeDiscount') @endif