{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
{!! __('pagination.previous') !!}
@else
previousPageUrl()), true)" dusk="pagination-simple-previous" href="{{ $paginationUrl }}" rel="prev" class="relative inline-flex items-center px-4 py-2 text-xs sm:text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
{!! __('pagination.previous') !!}
@endif
@includeWhen($hasPerPageOptions ?? true, 'splade::table.per-page-selector')
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
nextPageUrl()), true)" dusk="pagination-simple-next" href="{{ $paginationUrl }}" rel="next" class="relative inline-flex items-center px-4 py-2 text-xs sm:text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
{!! __('pagination.next') !!}
@else
{!! __('pagination.next') !!}
@endif