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
You need to call the markdown() method in the build() method of your mailable - not the view() method. See the example below:
markdown()
build()
view()
/** * Build the message. * * @return $this */ public function build() { return $this->markdown('view-to-mail'); }