Flux components
Pagination
Page links for a Laravel paginator.
Pass any paginator instance. The previous/next arrows follow the reading direction.
Showing 9 to 12 of 48 results
3
<flux:pagination :paginator="$orders" />
In RTL
On a Persian page the arrows and the page order mirror, and the numbers can be Persian — see the digit helpers.
Showing 9 to 12 of 48 results
3
<div dir="rtl">
<flux:pagination :paginator="$orders" />
</div>
Reference
flux:pagination
| Prop | Description |
|---|---|
| paginator | A LengthAwarePaginator or Paginator instance. |
| scroll-to | Selector to scroll to after a page change (true scrolls to body). Off by default. |