mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
17 lines
466 B
PHP
17 lines
466 B
PHP
{{-- Admin pagination wrapper --}}
|
|
@props([
|
|
'paginator',
|
|
'position' => 'bottom',
|
|
])
|
|
|
|
@if($paginator->hasPages())
|
|
@php
|
|
$borderClass = $position === 'top'
|
|
? 'border-b border-gray-200 dark:border-gray-700'
|
|
: 'border-t border-gray-200 dark:border-gray-700';
|
|
@endphp
|
|
<nav class="surface-panel-alt px-6 py-4 {{ $borderClass }}" aria-label="Pagination">
|
|
{{ $paginator->onEachSide(5)->links() }}
|
|
</nav>
|
|
@endif
|