| {{ _mt($moduleId, 'BankWire.slno') }} | {{ _mt($moduleId, 'BankWire.sku') }} | {{ _mt($moduleId, 'BankWire.item') }} | {{ _mt($moduleId, 'BankWire.quantity') }} | {{ _mt($moduleId, 'BankWire.price') }} | {{ _mt($moduleId, 'BankWire.net_amount') }} |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $productDetails->code }} | {{ $productDetails->name }} | {{ $product['quantity'] }} | {{ $product['quantity'] ? currency($productDetails->price) : currency(0) }} | {{ $product['quantity'] ? currency($productDetails->price * $product['quantity']) : currency(0) }}
@forelse($product['shipping'] as $charge)
{{ $charge['title'] }}
{{ currency($charge['amount']) }} {{ _mt($moduleId, 'BankWire.added') }}
@empty
@endforelse
@forelse($product['countryBasedTax'] as $countryBasedTax)
{{ $countryBasedTax['title'] }}
{{ currency($countryBasedTax['amount']) }} {{ _mt($moduleId, 'BankWire.added') }}
@empty
@endforelse
@forelse($product['discount'] as $discount)
{{ $discount['title'] }}
{{ currency($discount['amount']) }} {{ _mt($moduleId, 'BankWire.off_applied') }}
@empty
@endforelse
|
| {{ _mt($moduleId, 'BankWire.sub_total') }} | {{ currency($details->data['cartDetails']['subTotal']) }} | ||||
| {{ $fee['title'] }} | {{ currency($fee['amount']) }} | ||||
| {{ $shippingCharge['title'] }} | {{ currency($shippingCharge['amount']) }} | ||||
| {{ $tax['title'] }} | {{ currency($tax['amount']) }} | ||||
| {{ $discount['title'] }} | {{ currency($discount['amount']) }} | ||||
| {{ _mt($moduleId, 'BankWire.total') }} | {{ currency($details->data['cartDetails']['total']) }} | ||||