1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

E-Mail Verificationを実装中にTarget class [App\Listeners\LogVerifiedUser] does not exist. エラーに遭遇した時の対処法。  laravel6.20

Last updated at Posted at 2021-01-14

errors.png
#はじめに
laravelでwebサービスを開発中に詰まってしまったので、備忘録として投稿します

#環境

laravel 6.20
Mailtrap
を使用していました。

#実装に際して参考にしていたQiita記事
https://qiita.com/usaginooheso/items/d965f95191739f9335e8

こちらの記事にて確認メールを受信し、いざボタンをクリックしてみると...

errors.png

とエラー画面が表示されてしまう。
DBをみてみると、email_verified_atカラムは更新されており、処理は成功している。

#解決

エラーの通り、LogVerifiedUserクラスが存在しないことが問題のようです。
調べてみるとこちらのコマンドを打てばLogVerifiedUserを作成されるそう。

php artisan event:generate

これで設定したリダイレクト先へ遷移するようになりました!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?