# | {{ __('messages.product.product') }} | {{ __('messages.invoice.qty') }} | {{ __('messages.product.unit_price') }} | {{ __('messages.invoice.tax') . '(in %)' }} | {{ __('messages.invoice.amount') }} |
---|---|---|---|---|---|
{{ $key + 1 }} |
{{ isset($invoiceItems->product->name) ? $invoiceItems->product->name : $invoiceItems->product_name ?? __('messages.common.n/a') }} @if ( !empty($invoiceItems->product->description) && (isset($setting['show_product_description']) && $setting['show_product_description'] == 1)) {{ $invoiceItems->product->description }} @endif |
{{ number_format($invoiceItems->quantity, 2) }} | {{ isset($invoiceItems->price) ? getInvoiceCurrencyAmount($invoiceItems->price, $invoice->currency_id, true) : __('messages.common.n/a') }} | @foreach ($invoiceItems->invoiceItemTax as $keys => $tax) {{ $tax->tax ?? '--' }} @if (!$loop->last) , @endif @endforeach | {{ isset($invoiceItems->total) ? getInvoiceCurrencyAmount($invoiceItems->total, $invoice->currency_id, true) : __('messages.common.n/a') }} |