laravel routes文件夹结构

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

what I want to achieve

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.