Laravel Authentication Log Documentation

🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.

Purging Old Logs

You may clear the old authentication log records using the authentication-log:purge Artisan command:

1php artisan authentication-log:purge

Records that are older than the number of days specified in the purge option in your config/authentication-log.php will be deleted.

1'purge' => 365,

You can also schedule the command at an interval:

1$schedule->command('authentication-log:purge')->monthly();