Support the ongoing development of Laravel.io →
Requests Architecture Installation

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?

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

kokokurak kokokurak Joined 21 Aug 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.