Hello,
I am trying to make singup form from Tutorial1: https://docs.phalcon.io/en/latest/reference/tutorial.html
My 'app/views/index/index.phtml' is:
<?php
echo "<h1>Hello!</h1>";
echo $this->tag->linkTo("signup", "Sign Up Here!");
Generated HTML is:
<h1>Hello!</h1><a href="/tutorial/signup">Sign Up Here!</a>
When I click "Sign Up Here" URL I get:
Exception: TutorialController handler class cannot be loaded
Why it tries to execute TutorialController when it should be SignupController?