Answers for "No hint path defined for [mail]."

1

No hint path defined for [mail].

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');
}
Posted by: Guest on May-09-2021

Browse Popular Code Answers by Language