Skip to content

Kirby 4.1.2

$pagination->lastPageUrl()

Returns the Url for the last page

$pagination->lastPageUrl(): string|null

Return type

string|null

Parent class

Kirby\Cms\Pagination

Example

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

<!-- foreach loop with subpages -->

<a href="<?= $pagination->lastPageUrl() ?>">
  Go to last page
</a>