/**
  * Remove the specified Comment from storage.
  * DELETE /comments/{id}
  *
  * @param  int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     $this->commentRepository->apiDeleteOrFail($id);
     return $this->sendResponse($id, "Comment deleted successfully");
 }