Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

anonymouse703's avatar

How to add custom button to jump on last page using cursor pagination?

I was using cursor pagination in all tables because I have a lot of data.. the problem is only next and previous button is displayed... can I make another action button in header where I can jump into the last page of the cursor pagination?

0 likes
3 replies
martinbean's avatar
Level 80

@anonymouse703 From the Laravel cursor pagination docs:

However, cursor pagination has the following limitations:

Like simplePaginate, cursor pagination can only be used to display "Next" and "Previous" links and does not support generating links with page numbers.

This includes the “last” page, because cursor pagination has no notion of “page numbers”, including what number the “last” page would be.

Please or to participate in this conversation.