@lang('app.description') |
@if($invoiceSetting->hsn_sac_code_show)
@lang("app.hsnSac") |
@endif
@lang("modules.invoices.qty")
|
@lang("modules.invoices.unitPrice") ({{ $order->currency->currency_code }})
|
@lang("modules.invoices.tax") |
@lang("modules.invoices.amount")
({{ $order->currency->currency_code }}) |
@foreach ($order->items as $item)
{{ ucfirst($item->item_name) }} |
@if($invoiceSetting->hsn_sac_code_show)
{{ $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->orderItemImage)
{!! nl2br(strip_tags($item->item_summary, ['p', 'b', 'strong', 'a'])) !!}
@if ($item->orderItemImage)
@endif
|
@endif
@if ($item->has('product') && $item->product && $item->product->downloadable && $item->product->download_file_url && $order->status == 'completed')
|
@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($order->sub_total, '') }} |
@if ($discount != 0 && $discount != '')
{{ currency_formatter($discount, '') }} |
@endif
@foreach ($taxes as $key => $tax)
{{ currency_formatter($tax, '') }} |
@endforeach
{{ currency_formatter($order->total, '') }}
{{ $order->currency->currency_code }} |
|