Esempio n. 1
0
 /**
  * Remove the specified categories from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id, CategoriesRepo $categories_repo)
 {
     $delete = $categories_repo->remove($id);
     return 'true';
 }