/**
  * Delete comment.
  *
  * @param $id
  */
 public function delete(CommentDeleteRequest $request)
 {
     $this->comment->delete($request->input('id'));
 }