Order received

Dear {{ $order['first_name'] }},

Thank you for your order.

Customer Details:

First Name: {{ $order['first_name'] }}

Last Name: {{ $order['last_name'] }}

Email: {{ $order['email'] }}

Phone: {{ $order['phone'] }}

City: {{ $order['city'] }}

Address: {{ $order['address'] }}

Zip Code: {{ $order['zip_code'] }}

State: {{ $order['state'] }}

Status: {{ $order['status'] }}

Product details:

@foreach($ordered as $ord)

Product Name: {{ $ord['name'] }}

-Quantity: {{ $ord['quantity'] }}

-Price: ${{ $ord['price'] }}

@if($ord['product_type'])

-Product Type: {{ $ord['product_type'] }}

-Product Type Option: {{ $ord['product_type_option'] }}

@endif @endforeach

Subtotal

${{ $subtotal }}

Thank you for shopping with us!

Continue shopping