| {{_t('order.slno')}} | {{_t('order.item')}} | {{_t('order.quantity')}} | {{_t('order.price')}} | {{_t('order.net_amount')}} |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $product['entity']['name'] }} | {{ $product['quantity'] ? currency($product['entity']['price']) : currency(0) }} | {{ $product['quantity'] ? currency($product['amount'] * $product['quantity']) : currency(0) }}
@forelse($product['shipping'] as $charge)
{{ $charge['title'] }}
{{ currency($charge['amount']) }} {{_t('order.added')}}
@empty
@endforelse
@forelse($product['countryBasedTax'] as $countryBasedTax)
{{ $countryBasedTax['title'] }}
{{ currency($countryBasedTax['amount']) }} {{_t('order.added')}}
@empty
@endforelse
@forelse($product['discount'] as $discount)
{{ $discount['title'] }}
{{ currency($discount['amount']) }} {{_t('order.off_applied')}}
@empty
@endforelse
|
|
| {{_t('order.sub_total')}} | {{ currency($subTotal) }} | |||
| {{ $fee['title'] }} | {{ currency($fee['amount']) }} | |||
| {{ $shippingCharge['title'] }} | {{ currency($shippingCharge['amount']) }} | |||
| {{ $tax['title'] }} | {{ currency($tax['amount']) }} | |||
| {{ $discount['title'] }} | {{ currency($discount['amount']) }} | |||
| {{_t('order.total')}} | {{ currency($total) }} | |||