I have a use-case where I have the same uri path, e.g.: /{locale}/{customer}/{form}, once attached with ->where('customer', 'foo') and once with ->where('customer', 'bar'). The reason is, they need to use two different controllers for handling the forms. When I defined that, only one form ever works, depending on the order of the route.
How would you approach this use-case where you have the same uri path but two different controllers, depending on the route parameter?