@extends('front.layout') @section('title') {{__('Show order')}} @endsection @section('css') @endsection @section('content')
@csrf
{{__('Status')}}
:
{{$order->getStatus()}}


{{__('Comment')}} :
{{$order['comment']}}

@foreach($order['order_products'] as $product) @endforeach
{{__('Product')}} {{__('Description')}} {{__('Price')}} {{__('Quantity')}} {{__('Commission')}}
{{$product['product']['name']}}
    @foreach($product['options'] as $option)
  • {{$option['option']['attribute']['name']}}: {{$option['option']['name']}}
  • @endforeach

{{formated_price($product['product']['new_price'])}}

{{$product->real_quantity}}

{{formated_price($product->commission)}}

{{__('Customer info')}}

{{$order->name}}
{{$order->phone}}
{{$order->phone_2}}
{{$order->state->name}}
{{$order->city->name}}
{{$order->street}}
{{$order->home}}
{{$order->flat}}
{{$order->brand}}
{{$order->note}}

{{__('Order summary')}}

  • {{__('Subtotal')}} {{formated_price($order->total_order_product_with_commission)}}
  • {{__('Shipping')}} {{formated_price($order->shipping)}}
  • {{__('Overweight Total Price')}} {{formated_price($order->overweight_price)}}
  • {{__('Commission')}} {{formated_price($order->commission)}}
{{__('TOTAL')}} {{formated_price($order->total_order_price)}}

{{__('Support')}}

@foreach($order['supports'] as $support)

{{__($support['type'])}}

{{$support['body']}}

{{$support['solution']}}


@endforeach
@csrf

{{__('Do you have a problem?')}}

@endsection @section('scripts') @endsection