/**
  * @param Category $category
  *
  * @return boolean
  */
 public function destroy(Category $category)
 {
     $category->delete();
     return true;
 }