/**
  * Remove the specified CategorieTerapeutiche from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id, CategorieTerapeuticheRepo $categorie_terapeutiche_repo)
 {
     $delete = $categorie_terapeutiche_repo->remove($id);
     return 'true';
 }