Missing Controller 📋

Cake\Http\Exception\MissingControllerException
Toggle Vendor Stack Frames

Error Your routing resulted in Esr_redwood as a controller name.

    public function create(ServerRequestInterface $request): Controller
    {
        $className $this->getControllerClass($request);
        if ($className === null) {
            throw $this->missingController($request);
        }
        $reflection = new ReflectionClass($className);
        if ($reflection->isAbstract()) {

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

Ensure that your URL /esr_redwood 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.

If you want to customize this error message, create templates/Error/missing_controller.php