I'm trying to get working use
.
My file is in /application/controllers/indexController.php
use application\models\Database;
class IndexController extends Controller {
public function indexAction() {
$db = new Database();
$this->view->render('index','template');
}
}
My Database class is in /application/models/Database.php so i wrote use application\models\Database
But it tells
Fatal error: Class 'application\models\Database' not found in Z:\home\localhost\www\application\controllers\IndexController.php on line 7
How i can get it worked?