mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
18 lines
453 B
PHP
18 lines
453 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
|
|
<div class="px-6 py-4 {{ $borderClass }} bg-gray-50 dark:bg-gray-900">
|
|
{{ $paginator->onEachSide(5)->links() }}
|
|
</div>
|
|
@endif
|
|
|