We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code works:
$router->post('/api/social/contact', 'SocialController@contact');
But this code doesn't:
$router->mount('/api', function() use($router) { $router->mount('/social', function() use($router) { $router->post('/contact', 'SocialController@contact'); }); });
Note that there is no method specified in the mount statement.
mount
Am I missing something?
The text was updated successfully, but these errors were encountered:
Hey Rik, What do you mean by mounting a new route inner a route? Do you want to group the prefix routes?
Sorry, something went wrong.
Hi BaseMax,
That's indeed what I want to do, the above method works with get() requests but not if there's a child post() request.
get()
post()
Why don't you make it this way $router->mount('/api/social', function () use ($router) { $router->post('/contact', 'SocialController@contact'); }); ``
Why
$router->mount('/api/social', function () use ($router) { $router->post('/contact', 'SocialController@contact'); });
This way, you can add multiple subroutes under the api/social route like this:
$router->mount('/api/social', function () use ($router) {
$router->mount('/api/social',
$router->post('/contact', 'SocialController@contact'); $router->get('/friends', 'SocialController@friends'); $router->post('/add-friend', 'SocialController@addFriend');
})`
No branches or pull requests
The following code works:
$router->post('/api/social/contact', 'SocialController@contact');
But this code doesn't:
Note that there is no method specified in the
mount
statement.Am I missing something?
The text was updated successfully, but these errors were encountered: