{{ __('Order#') }} {{$order->order_number}} [{{$order->status}}]

{{ __('Order Date') }} {{date('d-M-Y',strtotime($order->created_at))}}

@if($order->dp == 1)
{{ __('Billing Address') }}
{{ __('Name:') }} {{$order->customer_name}}
{{ __('Email:') }} {{$order->customer_email}}
{{ __('Phone:') }} {{$order->customer_phone}}
{{ __('Address:') }} {{$order->customer_address}}
{{$order->customer_city}}-{{$order->customer_zip}}
{{ __('Payment Information') }}

{{ __('Tax:') }} {{ \PriceHelper::showOrderCurrencyPrice((($order->tax) / $order->currency_value),$order->currency_sign) }}

{{ __('Paid Amount:') }} {{ \PriceHelper::showOrderCurrencyPrice(($order->pay_amount * $order->currency_value),$order->currency_sign) }}

{{ __('Payment Method:') }} {{$order->method}}

@if($order->method != "Cash On Delivery") @if($order->method=="Stripe") {{$order->method}} {{ __('Charge ID:') }}

{{$order->charge_id}}

@endif {{$order->method}} {{ __('Transaction ID:') }}

{{$order->txnid}}

@endif
@else
{{ __('Billing Address') }}
{{ __('Name:') }} {{$order->customer_name}}
{{ __('Email:') }} {{$order->customer_email}}
{{ __('Phone:') }} {{$order->customer_phone}}
{{ __('Address:') }} {{$order->customer_address}}
{{$order->customer_city}}-{{$order->customer_zip}}
{{ __('Payment Information') }}

{{ __('Tax:') }} {{ \PriceHelper::showOrderCurrencyPrice((($order->tax) / $order->currency_value),$order->currency_sign) }}

{{ __('Paid Amount:') }} {{ \PriceHelper::showOrderCurrencyPrice(($order->pay_amount * $order->currency_value),$order->currency_sign) }}

{{ __('Payment Method:') }} {{$order->method}}

@if($order->method != "Cash On Delivery") @if($order->method=="Stripe") {{$order->method}} {{ __('Charge ID:') }}

{{$order->charge_id}}

@endif {{$order->method}} {{ __('Transaction ID:') }}

{{$order->txnid}}

@endif
@if($order->shipping == "shipto")
{{ __('Shipping Address') }}
{{ __('Name:') }} {{$order->shipping_name == null ? $order->customer_name : $order->shipping_name}}
{{ __('Email:') }} {{$order->shipping_email == null ? $order->customer_email : $order->shipping_email}}
{{ __('Phone:') }} {{$order->shipping_phone == null ? $order->customer_phone : $order->shipping_phone}}
{{ __('Address:') }} {{$order->shipping_address == null ? $order->customer_address : $order->shipping_address}}
{{$order->shipping_city == null ? $order->customer_city : $order->shipping_city}}-{{$order->shipping_zip == null ? $order->customer_zip : $order->shipping_zip}}
@else
{{ __('PickUp Location') }}
{{ __('Address:') }} {{$order->pickup_location}}
@endif
{{ __('Shipping Method') }}
@if($order->shipping == "shipto")

{{ __('Ship To Address') }}

@else

{{ __('Pick Up') }}

@endif
@endif

{{ __('Ordered Products:') }}


@foreach($cart['items'] as $product) @endforeach
{{ __('ID#') }} {{ __('Name') }} {{ __('Details') }} {{ __('Price') }} {{ __('Total') }}
{{ $product['item']['id'] }} {{mb_strlen($product['item']['name'],'UTF-8') > 50 ? mb_substr($product['item']['name'],0,50,'UTF-8').'...' : $product['item']['name']}} {{ __('Quantity') }}: {{$product['qty']}}
@if(!empty($product['size'])) {{ __('Size') }}: {{ $product['item']['measure'] }}{{str_replace('-',' ',$product['size'])}}
@endif @if(!empty($product['color'])) {{ __('Color') }}: @endif @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['item_price'] ) * $order->currency_value) }} {{ \PriceHelper::showCurrencyPrice(($product['item_price'] * $product['qty'] ) * $order->currency_value) }} {{ $product['discount'] == 0 ? '' : '('.$product['discount'].'% '.__('Off').')' }}