I am having trouble reading the module for my deepest folder when using the GetX pattern. The issue arises when I have a product list and want to add CRUD functionality. The folder structure ends up looking like this:
list_product/
controllers/
views/
bindings/
create_product/
controllers/
views/
bindings/
edit_product/
controllers/
views/
bindings/
detail_product/
controllers/
views/
bindings/
There are too many folders, and the solution I am currently using looks like this:
product/
list_product/
controllers/
views/
bindings/
create_product/
controllers/
views/
bindings/
edit_product/
controllers/
views/
bindings/
detail_product/
controllers/
views/
bindings/
Or am I wrong in implementing the nested routes
I am having trouble reading the module for my deepest folder when using the GetX pattern. The issue arises when I have a product list and want to add CRUD functionality. The folder structure ends up looking like this:
There are too many folders, and the solution I am currently using looks like this:
Or am I wrong in implementing the nested routes