The paging component does't have the way to toggle per-page and enter a page number for quick jumping.
The current paging control only supports up and down page switching, which is too simple to cope with the scenario of more data, and urgently needs to be upgraded to support more functions. Need the way to toggle per-page and enter a page number for quick jumping
When working with large datasets, you’ll most likely never want to calculate the total number of pages manually. Instead, it’s better to use cursor pagination, as described here: https://laravel.com/docs/12.x/pagination#cursor-pagination
In other words, traditional page navigation and “quick” jumps to specific pages only work well for small datasets.
Why not use the global search feature instead for quick access to what you need?
When working with large datasets, you’ll most likely never want to calculate the total number of pages manually. Instead, it’s better to use cursor pagination, as described here: https://laravel.com/docs/12.x/pagination#cursor-pagination
In other words, traditional page navigation and “quick” jumps to specific pages only work well for small datasets.
Why not use the global search feature instead for quick access to what you need?
When the total number of data is tens of thousands, basic pagination is still needed, but at the same time, there will be a lot of page numbers, and it is really inconvenient to have functions such as quick jumps
There are actually many cases where the amount of data is not large enough to require cursor paging, but at the same time there are a lot of page numbers.