I am developing the administration part of a site. It mostly consist of manipulating list of data such as:
- Products
- Suppliers
- Tax profiles
- ...
I find the task of creating a controller that handle the CRUD operations of each model a little too repeating and prone to mistake from one controller to another.
I would still need to adapt some of these controller for additional operation, but not all.
Does someone know an existing library or a proven approach for reducing the implication of controller for the usual CRUD operations?