Logout do usuário da Laravel Force

if (!Auth::user()->isActive()) {
    Auth::logout();

    return Redirect::home();
}
Alberto Peripolli