Missing Controller 📋

Cake\Http\Exception\MissingControllerException

Error SwietlicaController could not be found.

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 SwietlicaController below in file: src/Controller/SwietlicaController.php

    <?php
    namespace App\Controller;

    use App\Controller\AppController;

    class SwietlicaController extends AppController
    {

    }
CORE/src/Controller/ControllerFactory.php at line 349 (edit)
<?php      * @return \Cake\Http\Exception\MissingControllerException
<?php      */
<?php     protected function missingController(ServerRequest $request)
<?php     {
<?php         return new MissingControllerException([
<?php             'controller' => $request->getParam('controller'),
<?php             'plugin' => $request->getParam('plugin'),
<?php             'prefix' => $request->getParam('prefix'),
<?php             '_ext' => $request->getParam('_ext'),

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