By default CakePHP loads the related model in the controller. In order to load another model in the controller, use the loadModel() method:
$this->loadModel('Articles');
or load on the fly
$table = TableRegistry::get('Articles');
$table->find();