Laravel Limit Login Attempts

David Carr

1 min read - 19th Aug, 2018

When using Laravel's Login system for authentication it has a default of 5 failed login attempts and a lockout time for 1 minute. I previously documented how to override this in Laravel earlier versions of Laravel add login throttling with custom login controller This however no longer works on Laravel 5.6 instead you can set public properties to set the maxAttempts and decayMinutes.

Put these in your LoginController:

/**
 * Set how many failed logins are allowed before being locked out.
 */
public $maxAttempts = 1;

/**
 * Set how many seconds a lockout will last.
 */
public $decayMinutes = 30;

The above would set the login attempts to be set at 1 and a lockout for 30 minutes.

0 comments
Add a comment

Copyright © 2006 - 2024 DC Blog - All rights reserved.