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