How do I use "mount" one by one? The last one cancels the previous one. `$router->mount('/api/v1', function () use ($router) {});` doesn't work `$router->mount('/api/v2', function () use ($router) {});` works
How do I use "mount" one by one? The last one cancels the previous one.
$router->mount('/api/v1', function () use ($router) {});doesn't work$router->mount('/api/v2', function () use ($router) {});works