Laravel Force Pengguna Logout

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

    return Redirect::home();
}
Alberto Peripolli