auth = $auth; } /** * Log a user out and redirect them * * @return mixed */ public function doLogout() { $this->auth->logout(); Session::flush(); return redirect()->to('/?logged_out=yup'); } }