/**
  * Unapprove the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function getUnapprove($id)
 {
     $this->actionhandler->comment_unapprove($id);
     return Redirect::action('Alexwenzel\\LaravelCommentary\\ManagementController@getIndex');
 }