/**
  * @param $id
  * @return int
  */
 public function delete($id)
 {
     $category = $this->find($id);
     $this->file->delete($category->main_image_path);
     $this->file->delete($category->icon_path);
     $this->file->delete($category->small_icon_path);
     return $this->category->delete($id);
 }