I would like to create a custom URL structure for my Laravel application.
Right now I have a structure like this:
- mydomain.com/products/product-name - ProductController
- mydomain.com/articles/article-name - ArticleController
- mydomain.com/users/user-name - UserController
I would like to transform it like this:
- mydomain.com/product-name - ProductController
- mydomain.com/article-name - ArticleController
- mydomain.com/user-name - UserController
I already have slugs in common db table. It's not a problem to detect which controller should I use for "product-name".
I want to know, what's the best practice in this case. Where can I put my logic which connects slug "product-name" to ProductController?
Should I use middleware or is there any other approach to do so?