Does the file views/emails/test.blade.php exist?
Aug 14, 2020
7
Level 5
No hint path defined for [mail]. Laravel 7
I am trying to view mail markdown within the browser and it returns error "No hint path defined for [mail].".
php artisan make:mail Test --markdown=emails.test
Build method from mail class
public function build()
{
return $this->markdown('emails.test');
}
I have just this in my web routes:
Route::get('/test-email', function () {
return new \App\Mail\Test();
});
How can I solve this?
Please or to participate in this conversation.