# Order Confirmation Dear {{ $customerName }}, Thank you for your order! We are delighted to assist you with your beautiful flower selection. Here are the details of your purchase: **Order #{{ $invoice->number }}** Date: {{ $invoice->created_at->format('F j, Y') }} Total: ${{ number_format($invoice->order->total, 2) }} ## Items Ordered | Item | Price | | :--- | :--- | @foreach($invoice->order->items as $item) | {{ $item->product->name }} (Qty: {{ $item->quantity }}) | ${{ number_format($item->price, 2) }} | @endforeach @if($invoice->order->cardMessage) ## Card Message *{{ $invoice->order->cardMessage->message }}* @endif View Complete Invoice If you have any questions about your order, please reply to this email or call us at {{ setting('shop_phone', '773-288-2800') }}. Thank you for choosing **{{ setting('app_name', config('app.name')) }}**! Best regards, The {{ setting('app_name', config('app.name')) }} Team © {{ date('Y') }} {{ setting('app_name', config('app.name')) }}. All rights reserved. {!! nl2br(e(setting('shop_address', '1748 E 55th Street Chicago IL 60616'))) !!}