@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)
{{ $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, $order->currency_id, false) }} |
{{ $item->tax_list }} |
{{ currency_format($item->amount, $order->currency_id, false) }}
|
@if ($item->item_summary != '' || $item->orderItemImage)
{!! nl2br(pdfStripTags($item->item_summary)) !!}
@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)
{{ $key }} |
@endforeach
@lang("modules.invoices.total") |
|
{{ currency_format($order->sub_total, $order->currency_id, false) }} |
@if ($discount != 0 && $discount != '')
{{ currency_format($discount, $order->currency_id, false) }} |
@endif
@foreach ($taxes as $key => $tax)
{{ currency_format($tax, $order->currency_id, false) }} |
@endforeach
{{ currency_format($order->total, $order->currency_id, false) }}
{{ $order->currency->currency_code }} |
|