$pagination->limit()

Returns the limit of items per page

  • return (integer)

Example

$subpages   = $page->children()->paginate(10);
$pagination = $subpages->pagination();

echo 'Displaying ' . $pagination->limit() . ' of ' . $pagination->items() . ' items';