I'm new to laravel but I know that laravel folder structure can be customised.
So this is the default routes folder structure and files in laravel
default laravel routes structure
I want to separate my routes into smaller groups of folder, and each path contain file with same name to have clear image of each routes belong to which module, something like this
Hence I can separate the routes clearly as there are multiple developers working on the project
Is that possible to do so?
What file do I need to configure after I have this kind of structure to make it work?
I get some idea from here. But this is in app folder, I want to do it in routes folder
Thank you in advance for any solution.