mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
34 lines
836 B
PHP
34 lines
836 B
PHP
<div class="wa-stack">
|
|
<wa-divider></wa-divider>
|
|
<div class="wa-split">
|
|
<span class="wa-caption-l">Showing {{ $paginator->firstItem() }}-{{ $paginator->lastItem() }} of {{ $paginator->total() }} results</span>
|
|
<div class="wa-cluster wa-gap-xs">
|
|
<wa-button
|
|
appearance="outlined"
|
|
@if($paginator->onFirstPage())
|
|
disabled
|
|
@else
|
|
wire:click="previousPage"
|
|
wire:loading.attr="disabled"
|
|
rel="prev"
|
|
@endif
|
|
>
|
|
<livewire:app.icon name="arrow-left" slot="prefix" />
|
|
Previous
|
|
</wa-button>
|
|
<wa-button
|
|
appearance="outlined"
|
|
@if($paginator->onLastPage())
|
|
disabled
|
|
@else
|
|
wire:click="nextPage"
|
|
wire:loading.attr="disabled"
|
|
rel="prev"
|
|
@endif
|
|
>
|
|
Next
|
|
<livewire:app.icon name="arrow-right" slot="suffix" />
|
|
</wa-button>
|
|
</div>
|
|
</div>
|
|
</div>
|