@lang('app.description') |
@if($invoiceSetting->hsn_sac_code_show == 1)
@lang("app.hsnSac") |
@endif
@lang("modules.invoices.qty") |
@lang("modules.invoices.unitPrice") ({{ $invoice->currency->currency_code }})
|
@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 == 1)
{{ $item->hsn_sac_code }} |
@endif
{{ $item->quantity }} |
{{ number_format((float) $item->unit_price, 2, '.', '') }} |
{{ number_format((float) $item->amount, 2, '.', '') }}
|
@if ($item->item_summary || $item->proposalItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->proposalItemImage)
@endif
|
@endif
@endif
@endforeach
|
@lang("modules.invoices.subTotal") |
{{ number_format((float) $invoice->sub_total, 2, '.', '') }} |
@if ($discount != 0 && $discount != '')
@lang("modules.invoices.discount") |
{{ number_format((float) $discount, 2, '.', '') }} |
@endif
@foreach ($taxes as $key => $tax)
{{ strtoupper($key) }} |
{{ number_format((float) $tax, 2, '.', '') }} |
@endforeach
@lang("modules.invoices.total") |
{{ number_format((float) $invoice->total, 2, '.', '') }} |
|