{{__('Subtotal')}}: | {{formated_price($order->subtotal)}} |
---|---|
{{__('Commission')}}: | {{formated_price($order->commission)}} |
{{__('Shipping')}}: | {{formated_price($order->shipping)}} |
{{__('Overweight Total Price')}}: | {{formated_price($order->overweight_price)}} |
{{__('Total')}}: | {{formated_price($order->total)}} |
{{__('Product')}} | {{__('Serial Number')}} | {{__('Quantity')}} | {{__('Price')}} | {{__('Subtotal')}} | {{__('Commission')}} | {{__('Total Commission')}} | {{__('Action')}} | @foreach($order->order_products as $order_product)
---|---|---|---|---|---|---|---|
{{$order_product->product['name']}} | {{$order_product->product['serial_number']}} | {{$order_product->real_quantity}} | {{formated_price($order_product->price)}} | {{formated_price($order_product->subtotal)}} | {{formated_price($order_product->commission)}} | {{formated_price($order_product->total_commission)}} |