We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It is common to group similar routes behind a common prefix. This can be achieved using Route Groups:
$router->group(['prefix' => 'page'], function ($group) { $group->map(['GET'], 'route1', function () {}); // `/page/route1` $group->map(['GET'], 'route2', function () {}); // `/page/route2§` });