@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; $tax = 0; @endphp @foreach($cart['items'] as $product) @php $subtotal += round(($product['price'] / $order->currency_value) * $order->currency_value, 2); @endphp @endforeach @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) @endif @if($order->coupon_discount != null) @endif @if($order->wallet_price != 0) @if($order->method != "Wallet") @endif @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') }} :{{ \PriceHelper::showCurrencyPrice(($product['item_price'] ) * $order->currency_value) }}

{{ __('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
{{ \PriceHelper::showCurrencyPrice($product['price'] * $order->currency_value) }} {{ $product['discount'] == 0 ? '' : '('.$product['discount'].'% '.__('Off').')' }}
{{ __('Subtotal') }} {{ \PriceHelper::showCurrencyPrice($subtotal * $order->currency_value) }}
{{ DB::table('shippings')->where('price','=',$price)->first()->title }}({{$order->currency_sign}}) {{ \PriceHelper::showOrderCurrencyPrice($order->shipping_cost,$order->currency_sign) }}
{{ DB::table('packages')->where('price','=',$pprice)->first()->title }}({{$order->currency_sign}}) {{ \PriceHelper::showOrderCurrencyPrice($order->packing_cost,$order->currency_sign) }}
{{ __('Tax') }} {{ \PriceHelper::showOrderCurrencyPrice((($order->tax) / $order->currency_value),$order->currency_sign) }}
{{ __('Coupon Discount') }}({{$order->currency_sign}}) {{ \PriceHelper::showOrderCurrencyPrice($order->coupon_discount,$order->currency_sign) }}
{{ __('Paid From Wallet') }} {{ \PriceHelper::showOrderCurrencyPrice(($order->wallet_price * $order->currency_value),$order->currency_sign) }}
{{$order->method}} {{ \PriceHelper::showOrderCurrencyPrice(($order->pay_amount * $order->currency_value),$order->currency_sign) }}
{{ __('Total') }} {{ \PriceHelper::showOrderCurrencyPrice((($order->pay_amount + $order->wallet_price) * $order->currency_value),$order->currency_sign) }}
@endsection