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