Exemplo n.º 1
0
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 public function getLogout()
 {
     $this->auth->logout();
     return redirect('/');
 }
Exemplo n.º 2
0
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 public function getLogout()
 {
     $this->auth->logout();
     return redirect('users/login');
 }
Exemplo n.º 3
0
 /**
  * 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');
 }
Exemplo n.º 5
0
 /**
  * Log the user out of the application.
  *
  * @return Response
  */
 protected function getLogout()
 {
     $this->auth->logout();
     return redirect('login');
 }