Extend this class to implement HTTP controllers in your plugin while
benefiting from the framework routing and middleware lifecycle.
Tags
example
class manage_controller extends \local_middag\base\controller {
public function index(): \local_middag\framework\kernel\http\response {
return $this->render('extension/view', []);
}
}