@component('mail::message') # Order Received Thank you for your order. **Order ID:** {{ $order->id }} **Order Email:** {{ $order->email }} **Order Name:** {{ $order->name }} **Order Total:** ${{ $order->order_total}} **Items Ordered** @component('mail::table') |Product Name | Price | Quantity | | ---------------- |:----------------:| ------------:| @foreach ($order->products as $product) | {{$product->name}}|${{ $product->pivot->price }}|{{ $product->pivot->quantity }}| @endforeach @endcomponent
You can get further details about your order by logging into our website. @component('mail::button', ['url' => config('app.url').'/account', 'color' => 'green']) Go to Website @endcomponent Thank you again for choosing us. Regards,


![{{config('app.name')}}]({{asset('/assets/images/logo.png')}}) @endcomponent