Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...