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