Order Confirmation

Dear {{ $customername }},

Thank you for your order! We're pleased to confirm that your order #{{ $orderid }} has been received and is being processed.

CUSTOMER DETAILS

Name: {{ $customername ?? '' }}
Phone: {{ $customerphone ?? '' }}
Address: {{ $customeraddress }}{{ $customeraddresstwo ? ', ' . $customeraddresstwo : '' }}
Order Date: {{ date('F j, Y', strtotime($orderdate)) }}

Order Summary

@foreach($orderItems as $item) @endforeach @php $subtotal = $totalOrderAmount ?? 0; $shipping = $totalServiceFee ?? 0; $discount = $discountAmount ?? 0; $tax = $taxAmount ?? 0; $points = $pointsApplied ?? 0; $finalamount = max(0, $subtotal + $shipping + $tax - $discount - $points); @endphp @if(isset($discountAmount) && $discountAmount > 0) @endif @if(isset($pointsApplied) && $pointsApplied > 0) @endif @if(isset($taxAmount) && $taxAmount > 0) @endif
Item Color Qty Unit Price Total
{{ $item['product_name'] }} {{ $item['settextcolor'] }} {{ $item['quantity'] }} LKR {{ number_format($item['unit_price'], 2) }} LKR {{ number_format($item['total_price'], 2) }}
Subtotal: LKR {{ number_format($totalOrderAmount, 2) }}
Shipping Charges: LKR {{ number_format($totalServiceFee, 2) }}
Discount: - LKR {{ number_format($discountAmount, 2) }}
Points Applied: - LKR {{ number_format($pointsApplied, 2) }}
Tax ({{ $taxPercentage }}%): LKR {{ number_format($taxAmount, 2) }}
Total Amount: LKR {{ number_format($finalamount, 2) }}

Next Steps

Your order is now being processed. You'll receive another email when your order ships.

If you have any questions about your order, please contact our customer service team.