@extends(config('mio.theme').'.app') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{__('general.orders.choose-shipping')}}

@foreach($shippings as $shipping)
default) checked @endif>
@endforeach
@foreach($payments as $k => $payment)
{!! \Illuminate\Support\Facades\App::call('\\Modules\\'.$payment->module_name.'\Http\Controllers\\'.$payment->module_name.'Controller@index',['order_id' => $order->id,'module_id' => $payment->id]) !!}
@endforeach

{{__('general.order_summary')}}

{{__('general.image')}}
{{__('general.product')}}
{{__('general.quantity')}}
{{__('general.total')}}
 
@if(!empty($order->products)) {{csrf_field()}} @foreach($order->products as $product)

{{$product['product_name']}}

    @if(@json_decode($product['options'],true)) @foreach(json_decode($product['options'],true) as $opts)
  • {{$opts['option_name']}} : {{$opts['value_name']}}
  • @endforeach @endif
{{priceFormat($product['product_price'])}}
@endforeach @endif
{{__('general.sub_total')}}
{{priceFormat($order->total_price)}}
@if(isset($order->totals)) @foreach($order->totals as $totals)
{{$totals->name}}
{{priceFormat($totals->price)}}
@endforeach @endif
{{__('general.cart_total')}}
{{priceFormat($order->total_order)}}
@endsection @section('css') @endsection @section('structured') @endsection @section('js') @yield('js-inside') @endsection