laravel-authentication-log icon indicating copy to clipboard operation
laravel-authentication-log copied to clipboard

Log user authentication details and send new device notifications.

Results 30 laravel-authentication-log issues
Sort by recently updated
recently updated
newest added

I have three different models that can login to my application: Users, Applications, Enrolments. They are completely different models as they do completely different things. All start like this: `class...

Prefer language features over framework functions.

This packages works great, just I'm experiencing a few "false" new device notifications. My question is should a user get a notification if they have updated their browser? Take these...

Currently, when logging out of other devices, the listener updates every record for the given user, on a large dataset this can be hundreds of queries. By limiting the scope...

When using: ```php auth()->user()->previousLoginAt(); // or auth()->user()->previousLoginIp(); ``` They currently do not skip ALL failed login attempts. For instance, if there is a failed login attempt prior to the current...

Hi, your package v1.x returns SQL error at logout: ``` Illuminate\Database\QueryException SQLSTATE[42000]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]A column has been specified more than once in the order by...

I integrated `AuthenticationLoggable` to 2 model User and Company. `AdminUser` is without trait but it throws exception in login ![image](https://user-images.githubusercontent.com/49227202/149353826-1bc2ad6c-e48e-4325-b437-edcf879a9947.png) All models have diff guards but it still throws an...

Fixed issue with getting previous login at and previous login IP. Added down method to migration file to allow rollbacks.

The package mentions about failed logins but this is not being logged on the authentication_log table and email notifications aren't being sent. Am I missing anything?

In my auth.php I got multiple guards example: ``` 'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ], 'member' => [ 'driver' => 'session', 'provider' =>...