You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: Cannot use object of type Illuminate\Auth\Events\Attempting as array in projectname/vendor/genealabs/laravel-mixpanel/src/Listeners/LoginAttempt.php:11
$email = $event->credentials['email'] ?? $event['email'] ?? '';
i think it should be like this $email = $event->credentials['email'] ?? '';
The text was updated successfully, but these errors were encountered:
If you notice this does not have email in the credentials object.
On a side note, we are using Auth0 and Auth0 does not return the email so it might be an issue.
Error: Cannot use object of type Illuminate\Auth\Events\Attempting as array in projectname/vendor/genealabs/laravel-mixpanel/src/Listeners/LoginAttempt.php:11
$email = $event->credentials['email'] ?? $event['email'] ?? '';
i think it should be like this
$email = $event->credentials['email'] ?? '';
The text was updated successfully, but these errors were encountered: