Hi,
I am creating an admin area for my site. Currently I will need to manage products, catrgories, orders and users. How would I structure the app, to use:
Basically I don't want to have a really big admin controller so want the admin area to be strutured as:
Product section
List all: https://www.domain.com/admin/products
Edit / View: https://www.domain.com/admin/products/1
Users section
List all: https://www.domain.com/admin/users
Edit / View: https://www.domain.com/admin/users/1
so each controller mangages their specific sections, and not just one big controller.
Thanks