Order# {{$order->order_number}} [{{$order->status}}]

@include('includes.form-success')

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 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
@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
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 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
@endif

Products Ordered


@foreach($cart->items as $product) @endforeach
ID# Product Title Quantity Size Color Product Price Total Price
{{ $product['item']['id'] }} {{strlen($product['item']['name']) > 25 ? substr($product['item']['name'],0,25).'...' : $product['item']['name']}} {{$product['qty']}} {{ $product['item']['measure'] }} {{$product['size']}} {{$order->currency_sign}}{{round($product['item']['price'] * $order->currency_value,2)}} {{$order->currency_sign}}{{round($product['price'] * $order->currency_value,2)}}