Laravel: verify if the email has been signed in before the system allows the user to signout

49 Views Asked by At

How can I verify if the email was signed in before the system allows the user to sign out?

public function signoutUser(Request $request)
{
    if (User::attempt(['email' => $email])) 
    {
        return redirect()->intended('profile');
    }
}
1

There are 1 best solutions below

0
On

Try with auth()->check().

if(auth()->check()){
    auth()->logout();
}