@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')
{{ 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->estimateItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->estimateItemImage)
@endif
|
@endif
@endif
@endforeach
|
@lang("modules.invoices.subTotal") |
@if ($discount != 0 && $discount != '')
@lang("modules.invoices.discount") |
@endif
@foreach ($taxes as $key => $tax)
{{ mb_strtoupper($key) }} |
@endforeach
@lang("modules.invoices.total") |
|
{{ currency_formatter($invoice->sub_total, '') }} |
@if ($discount != 0 && $discount != '')
{{ currency_formatter($discount, '') }} |
@endif
@foreach ($taxes as $key => $tax)
{{ currency_formatter($tax, '') }} |
@endforeach
{{ currency_formatter($invoice->total, '') }}
{{ $invoice->currency->currency_code }} |
|