@if ($paginator->hasPages())
{{-- Previous Page Link --}} @if ($paginator->onFirstPage())
{!! __('pagination.previous') !!}
@else @if(method_exists($paginator,'getCursorName')) {{-- // @todo: Remove `wire:key` once mutation observer has been fixed to detect parameter change for the `setPage()` method call --}}
{!! __('pagination.previous') !!}
@else
{!! __('pagination.previous') !!}
@endif @endif
{{-- Next Page Link --}} @if ($paginator->hasMorePages()) @if(method_exists($paginator,'getCursorName')) {{-- // @todo: Remove `wire:key` once mutation observer has been fixed to detect parameter change for the `setPage()` method call --}}
{!! __('pagination.next') !!}
@else
{!! __('pagination.next') !!}
@endif @else
{!! __('pagination.next') !!}
@endif
@endif