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
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().
build
view()
markdown()
Like this:
public function build() { return $this->markdown('emails.registered'); }