# Hello {{ $invoice->order->customer->first_name }}, Thank you for your order! Here are the details of your invoice: ## Order Summary - **Total Amount:** ${{ $invoice->order->total }} - **Delivery Charges:** ${{ $invoice->order->shipping_cost }} - **Color:** {{ $invoice->order->color }} - **Size:** {{ $invoice->order->size }} ## Products Ordered @foreach($invoice->order->products as $product) - **Product Name:** {{ $product->name }} **SKU:** {{ $product->sku }} **Price:** ${{ $product->resell_price }} **Quantity:** {{ $product->pivot->quantity }} **Total:** ${{ $product->resell_price * $product->pivot->quantity }} @endforeach ## Customer Details - **Email:** {{ $invoice->order->customer->email }} - **Phone:** {{ $invoice->order->customer->contact_number }} - **Shipping Address:** {{ $invoice->order->customer->address }} If you have any questions about your order, feel free to contact us. Thank you for shopping with us!