Пример #1
0
 /**
  * Remove the specified Floor from storage.
  * DELETE /floors/{id}
  *
  * @param  int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     $this->floorRepository->apiDeleteOrFail($id);
     return $this->sendResponse($id, "Floor deleted successfully");
 }