@extends('layouts.admin') @section('content')

{{ __('Order Details') }}

{{ __('Invoice Number') }} : {{ sprintf("%'.08d", $order->id) }}
{{ __('Order Date') }} : {{ date('d-M-Y',strtotime($order->created_at)) }}
{{ __('Order ID')}} : {{ $order->order_number }}
@if($order->dp == 0) {{ __('Shipping Method') }} : @if($order->shipping == "pickup") {{ __('Pick Up') }} @else {{ __('Ship To Address') }} @endif
@endif {{ __('Payment Method') }} : {{$order->method}}
@if($order->dp == 0)

{{ __('Shipping Address') }}

{{ __('Customer Name') }}: {{ $order->shipping_name == null ? $order->customer_name : $order->shipping_name}}
{{ __('Address') }}: {{ $order->shipping_address == null ? $order->customer_address : $order->shipping_address }}
{{ __('City') }}: {{ $order->shipping_city == null ? $order->customer_city : $order->shipping_city }}
{{ __('Country') }}: {{ $order->shipping_country == null ? $order->customer_country : $order->shipping_country }}
@endif

{{ __('Billing Details') }}

{{ __('Customer Name') }}: {{ $order->customer_name}}
{{ __('Address') }}: {{ $order->customer_address }}
{{ __('City') }}: {{ $order->customer_city }}
{{ __('Country') }}: {{ $order->customer_country }}
@php $subtotal = 0; $data = 0; $tax = 0; @endphp @if(isset($cart->items)) @foreach($cart->items as $product) @php $subtotal += round($product['price'] * $order->currency_value, 2); @endphp @endforeach @endif @if(isset($cart['items'])) @foreach($cart['items'] as $prod) @php $subtotal += round($prod['price'] * $order->currency_value, 2); @endphp @endforeach @endif @if($order->shipping_cost != 0) @php $price = round(($order->shipping_cost / $order->currency_value),2); @endphp @if(DB::table('shippings')->where('price','=',$price)->count() > 0) @endif @endif @if($order->packing_cost != 0) @php $pprice = round(($order->packing_cost / $order->currency_value),2); @endphp @if(DB::table('packages')->where('price','=',$pprice)->count() > 0) @endif @endif @if($order->tax != 0) @php $tax = ($subtotal / 100) * $order->tax; @endphp @endif @if($order->coupon_discount != null) @endif
{{ __('Product') }} {{ __('Details') }} {{ __('Total') }}
@if($product['item']['user_id'] != 0) @php $user = App\Models\User::find($product['item']['user_id']); @endphp @if(isset($user)) {{ $product['item']['name']}} @else {{$product['item']['name']}} @endif @else {{ $product['item']['name']}} @endif @if($product['size'])

{{ __('Size') }} : {{str_replace('-',' ',$product['size'])}}

@endif @if($product['color'])

{{ __('color') }} :

@endif

{{ __('Price') }} : {{$order->currency_sign}}{{ round($product['item']['price'] * $order->currency_value , 2) }}

{{ __('Qty') }} : {{$product['qty']}} {{ $product['item']['measure'] }}

@if(!empty($product['keys'])) @foreach( array_combine(explode(',', $product['keys']), explode(',', $product['values'])) as $key => $value)

{{ ucwords(str_replace('_', ' ', $key)) }} : {{ $value }}

@endforeach @endif
{{$order->currency_sign}}{{ round($product['price'] * $order->currency_value , 2) }}
@if($prod['item']['user_id'] != 0) @php $user = App\Models\User::find($prod['item']['user_id']); @endphp @if(isset($user)) {{ $prod['item']['name']}} @else {{$prod['item']['name']}} @endif @else {{ $prod['item']['name']}} @endif @if($prod['size']) @php $clave = array_search(round($prod['price'] * $order->currency_value / $order->totalQty,2), $prod['item']['size_price']); @endphp @if(isset($clave))

{{ $langg->lang312 }} : {{$prod['item']['size'][$clave]}}

@else

{{ $langg->lang312 }} : {{str_replace('-',' ',$prod['size'])}}

@endif @endif {{-- Se corrige error de string a array en color --}} @if($prod['color'])

{{ $langg->lang313 }} :

@endif

{{ $langg->lang754 }} : {{$order->currency_sign}}{{ round($prod['item']['price'] * $order->currency_value , 2) }}

{{ $langg->lang595 }} : {{$prod['qty']}} {{ $prod['item']['measure'] }}

@if(!empty($prod['keys'])) @foreach( array_combine(explode(',', $prod['keys']), explode(',', $prod['values'])) as $key => $value)

{{ ucwords(str_replace('_', ' ', $key)) }} : {{ $value }}

@endforeach @endif
{{$order->currency_sign}}{{ round($prod['price'] * $order->currency_value , 2) }}
{{ __('Subtotal') }} {{$order->currency_sign}}{{ round($subtotal, 2) }}
{{ DB::table('shippings')->where('price','=',$price)->first()->title }}({{$order->currency_sign}}) {{ round($order->shipping_cost , 2) }}
{{ DB::table('packages')->where('price','=',$pprice)->first()->title }}({{$order->currency_sign}}) {{ round($order->packing_cost , 2) }}
{{ __('TAX') }}({{$order->currency_sign}}){{round($tax, 2)}}
{{ __('Coupon Discount') }}({{$order->currency_sign}}) {{round($order->coupon_discount, 2)}}
{{ __('Total') }} {{$order->currency_sign}}{{ round($order->pay_amount * $order->currency_value , 2) }}
@endsection