@extends('front.layout') @section('title') {{__('Show order')}} @endsection @section('css') @endsection @section('content') {{__('Home')}} {{__('Orders')}} {{__('Order details')}} {{__('Order details')}} @csrf {{__('Status')}} : {{$order->getStatus()}} {{__('Comment')}} : {{$order['comment']}} {{__('Product')}} {{__('Description')}} {{__('Price')}} {{__('Quantity')}} {{__('Commission')}} @foreach($order['order_products'] as $product) {{$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)}} @endforeach {{__('Customer info')}} {{__('Name')}} : {{$order->name}} {{__('Phone')}} : {{$order->phone}} {{__('Alternative Phone')}} : {{$order->phone_2}} {{__('State')}} : {{$order->state->name}} {{__('City')}} : {{$order->city->name}} {{__('Street')}} : {{$order->street}} {{__('House')}} : {{$order->home}} {{__('Flat')}} : {{$order->flat}} {{__('Brand')}} : {{$order->brand}} {{__('Note')}} : {{$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['id']}} {{__('Problem type')}} {{__($support['type'])}} {{__('Details')}} {{$support['body']}} {{__('Problem Solution')}} {{$support['solution']}} @endforeach @csrf {{__('Do you have a problem?')}} {{__('Problem type')}} {{__('select problem type')}} {{__('General information')}} {{__('Wrong product')}} {{__('Shipping problem')}} {{__('Other')}} {{__('Details')}} {{__('Send')}} @endsection @section('scripts') @endsection
{{formated_price($product['product']['new_price'])}}
{{formated_price($product->commission)}}
{{__($support['type'])}}
{{$support['body']}}
{{$support['solution']}}