Hi, I use Multiple Module File Structure ( this link )
namespace Phsocial\Frontend\Controllers;
class IndexController extends \Phalcon\Mvc\Controller
{
public function testAction()
{
$user = new Users;
}
}
In My Controller in frontend, I am trying to call a Model, But this error happens: Fatal error: Class 'Multiple\Frontend\Controllers\Users' not found in ...
as you see it searchs inside Controllers to find Users but it is my Model. I haven't changed any configuration. any help. thanks