@foreach($cart as $id => $cart_product)
@php
if($cart_product['variant'] != 0){
$variant = implode(' | ', $cart_product['variant']);
}else{
$variant = 0;
}
@endphp
{{trans('file.Sub Total')}}:
{{$currency->symbol ?? $currency->code}}{{ $subTotal ?? 0.00 }}
{{trans('file.Shipping cost')}}:
{{$currency->symbol ?? $currency->code}}0
{{trans('file.Grand Total')}}:
{{$currency->symbol ?? $currency->code}}0
@if(isset($pages))
@endif
@if(isset($ecommerce_setting->gift_card) && ($ecommerce_setting->gift_card == 1))
{{trans('file.Pay with gift card')}}
@endif
@foreach($gateways as $gateway)
@endforeach