Crud operations for single table inheritance

[color=#333333]I want to crud operations for models with Single table inheritance design pattern, I have table taxonomy that instantiate tag and category, how I can implement the crud operations for them (tag, category)? is it in the same controller taxonomyController or a controller for every one of them? Category has other attributes like root other attributes for the tree saving.[/color]

I’d implement them as a TaxonomyController and then pass the specifics of what’s being tagged/categorized to the actions within it.

Hi,

Thank you for the reply, can you share your code here?

thanks