📅  最后修改于: 2022-03-11 14:56:54.146000             🧑  作者: Mango
You need to call the markdown() method in the build() method of your
mailable - not the view() method. See the example below:
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->markdown('view-to-mail');
}