I have following function in User.php
model:
public function setPasswordAttribute($value)
{
$this->attributes['password'] = bcrypt($value);
}
My Login function in UserController.php
:
public function loginFunction(Request $request)
{
$authenticate = Auth::attempt([
'email' => $request->input('email'),
'password' => $request->input('password')
], $request->has('remember'));
if ($authenticate) {
Auth::logoutOtherDevices($request->input('password'));
return redirect()->route('frontend.index')->with('success', 'Logged');
} else {
return redirect()->back()->with('error', 'Error');
}
}
In kernel.php
, I uncomment this line :
IlluminateSessionMiddlewareAuthenticateSession::class,
Problem is: when a user login to his/her account all passwords on every rows in database
change.
How I can handle this?
Does anyone have another idea to prevent multiple people from using the same account at the same time?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…