Сортировка подкачки в Cakephp 3.x
В cakephp 3.xi не может делать порядок страниц в поиске Это мой контроллер: //AgentsController.php public function show() { $agents = $this->Agents->find() $this->set('agents', $this->paginate($agents)); } И вот часть моего взгляда //show.ctp <!– ……. –> <table class="table table-striped"> <thead> <tr> <th> <?php echo $this->Paginator->sort('full_name', 'Nome', array('escape' => false)); ?> </th> <th> <?php echo $this->Paginator->sort('username', 'Email', array('escape' => […]