I am not sure about the separate routes according to the specific controllers but you can use modules structure in laravel by using this plugin(https://github.com/bstrahija/laravel-modules-example) . It will allowed you to create routes according to the module. Hope this will help you but as per your concern each controller will have it's own route file might not be possible or it can be acheive by some customization code, but for this we have to do research ! :)
Well if you wanted to separate out groups of routes into their own route files you could use 'includes' in the main routes.php file to then load a handful of other route files...
include('x_routes.php'); include('y_routes.php');
This should do what you want... unless I've misunderstood :)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community