@extends('merchant.layout') @section('title',__('Show order')) @section('css') @endsection @section('breadcrump')
{{$order['comment']}}
{{__('Product')}} | {{__('Type')}} | {{__('Serial Number')}} | {{__('Weight')}} | {{__('Quantity')}} | {{__('Return quantity')}} | {{__('Price')}} | {{__('Total commission')}} | {{__('Subtotal')}} | @foreach($order->order_products as $order_product) @if($order_product->product->merchant_id == auth()->guard('merchant')->user()->id)
---|---|---|---|---|---|---|---|---|
{{$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)}} |