@component('mail::message') # Order Confirmation Thank you for your order! Here are the details: ## Customer Information - **Name:** {{ $order->customer->first_name }} {{ $order->customer->last_name }} - **Email:** ${{ $order->customer->email }} - **Address/Shipping Address:** ${{ $order->customer->address }} {{ $order->customer->town_city }} {{ $order->customer->state }} {{ $order->customer->postal_code }} {{ $order->customer->country }} - **Contact:** {{ $order->customer->contact_number }} ## Order Summary - **Order ID:** {{ $order->id }} - **Total Amount:** ${{ $order->total }} - **Shipping Cost:** ${{ $shippingCost }} - **Shipping Method:** {{ $shippingMethod }} - **Status:** {{ $order->shipping_status }} ## Product Details @foreach($orderProduct->products as $product) - **Product Name:** {{ $product->name }} - **Quantity:** {{ $product->quantity }} - **Size:** {{ $order->size ?? 'N/A' }} - **Color:** {{ $order->color ?? 'N/A' }} - **Price:** ${{ $order->invoice_amount }} @endforeach Thank you for choosing our service. We appreciate your business and hope to serve you again soon! Best Regards, The {{ config('app.name') }} Team @component('mail::button', ['url' => env('FRONTEND_URL').'/apps/ecommerce/order/'.$order->id]) View Order @endcomponent @endcomponent