layout = 'dev_error'; $this->assign('title', 'Missing Controller'); $this->assign('templateName', 'missing_controller.php'); ?> start('subheading');?> Error Your routing resulted in as a controller name. Controller could not be found. end() ?> start('file'); ?>

The controller name has not been properly inflected, and could not be resolved to a controller that exists in your application.

Ensure that your URL request->getUri()->getPath()) ?> is using the same inflection style as your routes do. By default applications use DashedRoute and URLs should use - to separate multi-word controller names.

In the case you tried to access a plugin controller make sure you added it to your composer file or you use the autoload option for the plugin.

Suggestion Create the class Controller below in file:

end(); ?>