Ejemplo n.º 1
0
 /**
  * Clear sessions
  *
  * @return mixed
  */
 public function logout()
 {
     $this->account->logout();
     return Redirect::route('home');
 }
Ejemplo n.º 2
0
 /**
  * @return bool
  */
 public function logout()
 {
     $this->account->logout();
     return Redirect::guest('/');
 }