CakePHP 2.x: Pagination Element
Being working on Bootstrap Pagination with CakePHP. Here the final one. Use it as you needed.
References:
<nav> <ul class="pagination"> <?php echo $this->Paginator->prev('< ' . __d('users', 'previous'), array('tag' => 'li'), null, array('disabledTag' => 'span', 'class' => 'disabled')); echo $this->Paginator->numbers(array( 'separator' => '', 'tag' => 'li', 'currentTag' => 'span', 'currentClass' => 'active' )); echo $this->Paginator->next(__d('users', 'next') . ' >', array('tag' => 'li'), null, array('disabledTag' => 'span', 'class' => 'disabled')); ?> </ul> </nav>