I am using this code for pagination links
<nav class="nav_pag">
<ul class=" pagination justify-content-center">
<li class="page-item">
<?php
echo $this->Paginator->first(__('First', true), array('tag' => 'li', 'escape' => false), array('type' => "button", 'class' => "page-link"));
echo $this->Paginator->prev('«', array('tag' => 'li', 'escape' => false), '<a href="#">«</a>', array('class' => 'prev disabled', 'tag' => 'li', 'escape' => false));
echo $this->Paginator->numbers(['first' => 1, 'last' => 1],[['separator' => '', 'tag' => 'li', 'currentLink' => true, 'currentClass' => 'active', 'currentTag' => 'a']]);
echo $this->Paginator->next('»', array('tag' => 'li', 'escape' => false), '<a href="#">»</a>', array('class' => 'prev disabled', 'tag' => 'li', 'escape' => false));
echo $this->Paginator->last(__('Last', true), array('tag' => 'li', 'escape' => false), array('type' => "button", 'class' => "page-link"));
?>
</ul>
</nav>
at mobile for $this->Paginator->numbers i just want to show 2 or max 5 pages link but its showing max 10. How to fix it?
$this->Paginator->numbers([‘first’ => 1, ‘last’ => 1]) is not working.
Thanks