No hint path defined for [mail] Laravel 5.4

前端 未结 6 2134
时光取名叫无心
时光取名叫无心 2020-12-10 10:24

hi guys i\'m trying to show my markdown email on view, but there\'s something wrong on my mail view, it shows like

ErrorException in FileViewFinder.php line          


        
6条回答
  •  温柔的废话
    2020-12-10 10:31

    To use Markdown mailable messages, you have to update the build method of your Mailable class and instead of view(), you have to use markdown().

    Like this:

    public function build()
    {
        return $this->markdown('emails.registered');
    }
    

提交回复
热议问题