Example #1
0
 /**
  * Remove the specified Rate from storage.
  * DELETE /rates/{id}
  *
  * @param  int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     $this->rateRepository->apiDeleteOrFail($id);
     return $this->sendResponse($id, "Rate deleted successfully");
 }