@extends('front.layout') @section('title') {{__('Your bills are at your fingertips at any time')}} @endsection @section('css') @endsection @section('content')

{{$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')}} {{__('Description')}} {{__('Quantity')}} {{__('Return quantity')}} {{__('Subtotal')}}
{{$order_product['product']['name']}} {{$order_product['product']['ProductID']}} {{$order_product['product']['serial_number']}} {{$order_product['product']['weight']}}
    @foreach($order_product['options'] as $option)
  • {{$option['option']['attribute']['name']}}: {{$option['option']['name']}}
  • @endforeach
{{$order_product->quantity}} {{$order_product->return_quantity}} {{$order_product->total_product_price_with_site_commission_and_marketer}}

{{__('Order summary')}}

  • {{__('Subtotal')}} {{price($order->total_order_product_with_commission_and_marketer)}}
  • {{__('Shipping')}} {{formated_price($order->shipping)}}
  • {{__('Overweight Total Price')}} {{formated_price($order->overweight_price)}}
{{__('TOTAL')}} {{formated_price($order->total_order_price)}}
@endsection @section('scripts') @endsection