Пример #1
0
 /**
  * Clear sessions
  *
  * @return mixed
  */
 public function logout()
 {
     $this->account->logout();
     return Redirect::route('home');
 }
Пример #2
0
 /**
  * @return bool
  */
 public function logout()
 {
     $this->account->logout();
     return Redirect::guest('/');
 }