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');
}
}
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');
}
}
Try with auth()->check().