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