still not working here is my code
$router = new Phalcon\Mvc\Router();
$router->setDefaultController(
array(
"controller" => "home",
"action" => "index"
)
);
$router->handle();
i created a folder named router in my app folder and in my config.php i add
'routerDir' => DIR . '/../../app/router/',
also in my loader.php i add
$config->application->routerDir,
am i missing somthing coz i still get IndexController handler class cannot be loaded
on my screen