I have a plugin named as PanelAdmin. It has Controller UsersController.php
and inside it there are different actions defined.
I have called the default controller within the plugin through this code
$routes->connect('/PanelAdmin', ['plugin' => 'PanelAdmin','controller' => 'default','action' => 'index']);
but cannot call other controller if i hit this url:
http://localhost/multi_shopping/PanelAdmin/Users/
One thing more i want to clear is i have to define routes for all controllers actions in routes.php. Please solve my issue. Thanks