@component('mail::message')
Your Order is sent successfully!
Order:
mail : {{ $order->billing_email }}
Name : {{ $order->billing_name }}
Total : {{ $order->billing_total }}
products:
@foreach ($order->products as $product)
{{ $product->name }} : {{ $product->pivot->quantity }}
@endforeach
@component('mail::button', ['url' => config('app.url')])
Go To The Site
@endcomponent
Thanks,
{{ config('app.name') }}
@endcomponent