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

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

@endsection @section('content')

{{__('Seller Comment')}} :

{{$order['comment']}}


@foreach($order->order_products as $order_product) @if($order_product->product->merchant_id == auth()->guard('merchant')->user()->id) @endif @endforeach
{{__('Product')}} {{__('Type')}} {{__('Serial Number')}} {{__('Weight')}} {{__('Quantity')}} {{__('Return quantity')}} {{__('Price')}} {{__('Total commission')}} {{__('Subtotal')}}
{{$order_product['product']['name']}} {{$order_product['product']['type']}} {{$order_product['product']['serial_number']}} {{$order_product['product']['weight']}} {{$order_product->quantity}} {{$order_product->return_quantity}} {{price($order_product->price)}} {{price($order_product->total_commission)}} {{price($order_product->subtotal)}}
{{__('Order Summary')}}
{{__('Subtotal')}}: {{price($order->subtotal)}}
{{__('Commission')}}: {{price($order->commission)}}
{{__('Shipping')}}: {{price($order->shipping)}}
{{__('Overweight Total Price')}}: {{price($order->overweight_price)}}
{{__('Total')}}: {{price($order->total)}}
@include('merchant.pages.orders.status_modal') @endsection @section('scripts') @include('merchant.pages.orders.order_js') @endsection