@extends('front.layout') @section('title') {{__('Checkout')}} @endsection @section('css') @endsection @section('content')

@csrf @php $count=0; @endphp @if(count($order['order_products'])) @foreach($order['order_products'] as $product) @php $count++; @endphp @endforeach @else @endif
{{__('Product')}} {{__('Description')}} {{__('Price')}} {{__('Quantity')}} {{__('Commission')}}
{{$product['product']['name']}} @php $product_weight=$product['product']['weight']*$product['quantity']; @endphp
    @foreach($product['options'] as $product_option)
  • {{$product_option['option']['attribute']['name']}} : {{$product_option['option']['name']}}
  • @endforeach
{{formated_price($product['product']['new_price'])}} {{$product['real_quantity']}} {{formated_price($product['commission'])}}
{{__('Cart empty')}}

{{__('Customer info')}}

{{__('Order summary')}}

  • {{__('Subtotal')}}
  • {{__('Shipping')}} {{formated_price(0)}}
  • {{__('Overweight Total Price')}} {{formated_price(0)}}
  • {{__('Commission')}}
{{__('Total')}}
@include('front.pages.checkout.modal') @endsection @section('scripts') @include('front.pages.checkout.checkout_js') @endsection