@component('mail::message')
# Order Received
Hello Georges,
**Order ID:** {{ $order->id }}
**Order Email:** {{ $order->email }}
**Order Name:** {{ $order->name }}
**Order Address:** {{ $order->address }}
**Order City:** {{ $order->city }}
**Order Phone:** {{ $order->phone }}
**Order Total:** ${{ $order->order_total}}
@if ($order->additional_comments)
**Order Comments:** {{ $order->additional_comments}}
@endif
**Items Ordered**
@component('mail::table')
|Product Name | Price | Quantity |
| ---------------- |:----------------:| ------------:|
@foreach ($order->products as $product)
| {{$product->name}}|${{ $product->pivot->price }}|{{ $product->pivot->quantity }}|
@endforeach
@endcomponent
Regards,
![{{config('app.name')}}]({{asset('/assets/images/logo.png')}})
@endcomponent