@extends('admin.layout') @section('title',__('Show order')) @section('css') @endsection @section('breadcrump')

{{__('Order')}} #{{$order->order_id}}

@endsection @section('content')
{{__('Edit')}}

{{$order['user']['brand']}}
{{__('Customer Info')}}
{{__('Name')}}: {{$order->name}}
{{__('Phone')}}: {{$order->phone}}
{{__('Alternative Phone')}}: {{$order->phone_2}}
{{__('State')}}: @if(isset($order['state'])){{$order->state['name']}}@endif
{{__('City')}}: @if(isset($order['city'])){{$order->city['name']}}@endif
{{__('Street')}}: {{$order->street}}
{{__('House')}}: {{$order->home}}
{{__('Flat')}}: {{$order->flat}}
{{__('notes')}}: {{$order->note}}

@foreach($order->order_products as $order_product) @endforeach
{{__('Product')}} {{__('ProductID')}} {{__('Serial Number')}} {{__('Weight')}} {{__('Quantity')}} {{__('Return quantity')}} {{__('Price')}}
{{$order_product['product']['name']}} {{$order_product['product']['ProductID']}} {{$order_product['product']['serial_number']}} {{$order_product['product']['weight']}} {{$order_product->quantity}} {{$order_product->return_quantity}} {{formated_price($order_product->total_product_price_with_site_commission_and_marketer)}}
{{__('Order Summary')}}
{{__('Subtotal')}}: {{price($order->total_order_product_with_commission_and_marketer)}}
{{__('Shipping')}}: {{price($order->shipping)}}
{{__('Overweight Total Price')}}: {{price($order->overweight_price)}}
{{__('Total')}}: {{price($order->total_order_price)}}
@include('admin.pages.orders.status_modal') @endsection @section('scripts') @include('admin.pages.orders.order_js') @endsection