public function logout()
 {
     Auth::logout();
     LoggedInUser::remove();
     Session::flush();
     return Redirect::route('home');
 }