Laravel login event fired once on every request even if already logged in

Hi

We’ve recently upgraded our Auth0 Laravel package to 7.11.0. Everything seems to work after some refactoring but I’ve noticed that an Illuminate\Auth\Events\Login event fires once on every request.

From debugging, it looks like every request is hitting AuthenticationGuard.php:315 and triggering a login event.

Is this expected behaviour? Just wondering if we’ve missed something in our refactor.

Thanks!

Hi. Try AuthenticationSucceeded instead of the traditional Laravel LogSuccessfulLogin.