@lang('app.description') |
@if ($invoiceSetting->hsn_sac_code_show)
@lang('app.hsnSac') |
@endif
@lang('modules.invoices.qty')
|
@lang('modules.invoices.unitPrice')
({{ $invoice->currency->currency_code }})
|
@lang('modules.invoices.tax') |
@lang('modules.invoices.amount')
({{ $invoice->currency->currency_code }})
|
@foreach ($invoice->items as $item)
@if ($item->type == 'item')
{{ $item->item_name }} |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code }} |
@endif
{{ $item->quantity }} @if($item->unit) {{ $item->unit->unit_type }}@endif |
{{ currency_format($item->unit_price, $invoice->currency_id, false) }}
|
{{ $item->tax_list }} |
{{ currency_format($item->amount, $invoice->currency_id, false) }}
|
@if ($item->item_summary || $item->invoiceItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->invoiceItemImage)
@endif
|
@endif
@endif
@endforeach
|
@lang('modules.invoices.subTotal') |
@if ($discount != 0 && $discount != '')
@lang('modules.invoices.discount') |
@endif
@foreach ($taxes as $key => $tax)
{{ $key }} |
@endforeach
@lang('modules.invoices.total') |
@lang('modules.invoices.total')
@lang('modules.invoices.due') |
|
{{ currency_format($invoice->sub_total, $invoice->currency_id, false) }}
|
@if ($discount != 0 && $discount != '')
{{ currency_format($discount, $invoice->currency_id, false) }} |
@endif
@foreach ($taxes as $key => $tax)
{{ currency_format($tax, $invoice->currency_id, false) }} |
@endforeach
{{ currency_format($invoice->total, $invoice->currency_id, false) }}
|
{{ currency_format($invoice->amountDue(), $invoice->currency_id, false) }}
{{ $invoice->currency->currency_code }} |
|