CakePHP 3.0
I\'m getting a \"Missing Route\" error for a route that exists.
Here are my routes:
#my admin routes...
Router::prefix(\'admin\'
Take a closer look at the stacktrace, the error dosn't occour in the dispatching process, which you seem to think, it is being triggered in your view template, where you are probably trying to create a link to the add
action, and reverse-routing cannot find a matching route, hence the error.
The solution should be obvious, connect the necessary routes, being it explicit ones like
$routes->connect('/screens/add', ['controller' => 'Screens', 'action' => 'add']);
catch-all ones
$routes->connect('/screens/:action', ['controller' => 'Screens']);
or simply the fallback ones that catch everything
$routes->fallbacks('InflectedRoute');
This work for me in case of use prefix admin :-
Router::prefix('admin', function ($routes) {
// Because you are in the admin scope,
// you do not need to include the /admin prefix
// or the admin route element.
$routes->connect('/', ['controller' => 'Users', 'action' => 'index']);
$routes->extensions(['json', 'xml']);
// All routes here will be prefixed with `/admin`
$routes->connect('/admin', ['controller' => 'Order', 'action' => 'index']);
// And have the prefix => admin route element added.
$routes->fallbacks(DashedRoute::class);
});