Using Mailables Markdown Laravel
Just to make it short this is just to make mailables markdown template, which has been useful to me.
php artisan make:mail CreateOrder --markdown=mail.orders.created
File app.mail.createOrder
public function __construct($content)
{
$this->content = $content;
}
public function build()
{
return $this->from('[email protected]')
->subject(