I'd like to be able to have multiple dynamic routes that can interrupt each other. For example, I have /{username}
route, as well as /{page}
, where page URI can be of any depth level, like /contact/phone/canada
etc.
II need to have my routes to be defined like this:
get('{username}', 'UserController@profile');
get('{uri}', 'PageController@view')->where('uri', '.+');
This solution has many advantages over single controller that would match my URIs. The main one is flexibility and having all routes in one place.
By default, I think it's not possible. Matched URL just runs controller action. I need something like skipping route if controller's action returns null.
Is it possible, by tweaking Laravel's Router for example?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community