xxxxxcontroller.php
добавить приведенный ниже код к вашему контроллеру
public $helpers = [
'Paginator' => ['templates' => 'paginator-templates']
];
public $paginate = [
'limit' =>100
];
public function index()
{
$users = $this->Users->find('all');
$users= $this->set('users', $this->paginate());
}
Вы можете отрегулировать значение предела для любого числа, которое вы хотите.Как и для того, который вы хотели, измените значение лимита на 100
index.ctp
<?= $this->Paginator->first("First"); ?>
<?= $this->Paginator->prev('< ' . __('Previous')) ?>
<?= $this->Paginator->numbers(); ?>
<?= $this->Paginator->next(__('Next') . ' >') ?>
<?= $this->Paginator->last("Last"); ?>
</ul>
<p>Showing <?= $this->Paginator->counter() ?></p>