Pagination

Basics

You can make index pages paginatable.

$this->paginate();

By default this will show 20 per page. You can change this by passing a parameter.

$this->paginate(20);

Other Methods

  • setPaginate(bool $paginate)
  • getPaginate()
  • setPerPage(int $per_page)
  • getPerPage()