tetero
@tetero (tetero)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

laravel7のlogoutメソッドの処理内容を変えたい

やりたいこと

laravel7のlogoutメソッドの処理内容を変えたい

発生している問題

・AuthenticatesUsersがどこにあるかわからない

authをインストールしたコマンド

composer require laravel/ui

php artisan ui vue --auth 

具体的な正解が分かる方、
よろしくお願い致します!

0

1Answer

ログアウト時に独自に処理を走らせたいということでしょうか?

であれば
php artisan make:listener LogoutSuccessfulLogin
を実行して LogoutSuccessfulLogin リスナーを作成。

EventServiceProvider.phpに

    protected $listen = [
・・・中略・・・
        'Illuminate\Auth\Events\Logout' => [
            \App\Listeners\LogoutSuccessfulLogin::class,
        ]
・・・中略・・・
    ];


を追加。

LogoutSuccessfulLogin.phpのhandleメソッド内に独自処理を記述。

という方法が良いのではないでしょうか。

0Like

Your answer might help someone💌