/**
  * Remove the specified model from storage.
  *
  * @param  int      $model_id
  * @return Response
  */
 public function destroy($model_id)
 {
     $this->repository->deleteById($model_id);
     return ['success' => true];
 }