@csrf @method('put')

{{__('Customer Info')}}

{{__('Name')}}:
{{__('Phone')}}:
{{__('Alternative Phone')}}:
{{__('State')}}:
{{__('City')}}:
{{__('Brand')}}:
{{__('Street')}}:
{{__('House')}}:
{{__('Flat')}}:
{{__('Notes')}}:

{{__('Order Summary')}}

{{-- --}}
{{__('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)}}

{{__('Shipping company')}}

{{__('Shipping company')}}:

{{__('Order products')}}

@foreach($order->order_products as $order_product) @endforeach
{{__('Product')}} {{__('Serial Number')}} {{__('Quantity')}} {{__('Price')}} {{__('Subtotal')}} {{__('Commission')}} {{__('Total Commission')}} {{__('Action')}}
{{$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)}}
@csrf