In cakephp 2.x we can load multiple models for whole controller
<?php
App::uses('AppController', 'Controller');
class PagesController extends AppController {
public $uses = array('model1', 'model2', 'model3', .... );
public function index(){
}
}
?>
How to do same on Cakephp 4.x