{{ _mt($moduleId, 'BankWire.order_summery') }}

@foreach($details->data['cartDetails']['products'] as $product) @php if ($isPackage) $productDetails = \App\Eloquents\Package::where('id', $product['cart_key']['productId'])->first(); else $productDetails = \App\Eloquents\Product::where('id', $product['cart_key']['productId'])->first(); @endphp @endforeach @foreach($details->data['cartDetails']['fees'] as $fee) @endforeach @foreach($details->data['cartDetails']['shipping'] as $shippingCharge) @endforeach @foreach($details->data['cartDetails']['tax'] as $tax) @endforeach @foreach($details->data['cartDetails']['discount'] as $discount) @endforeach
{{ _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']) }}