registering failed logins package for Laravel 5
outsmartit/failedlogins is a Laravel package for registering failed logins package for laravel 5.
It currently has 0 GitHub stars and 13 downloads on Packagist (latest version v1.0.1).
Install it with composer require outsmartit/failedlogins.
Discover more Laravel packages by outsmartit
or browse all Laravel packages to compare alternatives.
Last updated
Laravel package for registering failed logins into the database.
Based on solution described by Brayniverse.
All failed logins attempts are logged in a table.
composer require "outsmartit/failedlogins"
The last logins can be checked via url \failedlogins. The default number of logins shown is 10, but can be set in your .env file via parameter
The standard view extends de "layouts.app" template and shows the last 10 failed logins in a bootstrap table layout. If you want to change the styling you can publish and adapt the view using :
php artisan vendor:publish --provider="Outsmartit\Failedlogins\FailedLoginsServiceProvider"
To change the number of shown failed logins, you can set the value of parameter "FAILEDLOGINS_LIST_MAX" in your .env file