你好,我正在使用 Laravel DEFAULT 密码重置,它工作得很好,但是有一个小问题,我可以每分钟请求“密码重置”,但我不喜欢它,所以我的问题是如何减少该请求比如,我希望能够每 5m 发出 2 个请求。
/ForgotPasswordController.php
public function __construct()
{
if (preg_match('/en/',url()->previous())){
App::setLocale('en');
}else{
App::setLocale('ru');
}
$this->middleware('guest');
}
元芳怎么了
FFIVE