public function unban($hash)
 {
     $user = User::where('public_hash', $hash)->firstOrFail();
     Ban::unbanComments(self::userFp(), $user->user_fp);
     return Redirect::to('@' . $user->public_hash);
 }