示例#1
0
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 public function getLogout()
 {
     $this->auth->logout();
     return redirect('/');
 }
示例#2
0
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 public function getLogout()
 {
     $this->auth->logout();
     return redirect('users/login');
 }
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 protected function getLogout()
 {
     $this->auth->logout();
     return redirect()->intended('/');
 }
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 protected function getLogout()
 {
     $this->auth->logout();
     return redirect('laravel_angular/users/login');
 }
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 protected function getLogout()
 {
     $this->auth->logout();
     return redirect('login');
 }