No hint path defined for [mail] Laravel 5.4

前端 未结 6 2131
时光取名叫无心
时光取名叫无心 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:52

    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');
    }
    

提交回复
热议问题