@if ($paginator->hasPages())
{{-- Previous Page Link --}} @if ($paginator->onFirstPage())
{!! __('pagination.previous') !!}
@else @if(method_exists($paginator,'getCursorName'))
{!! __('pagination.previous') !!}
@else
{!! __('pagination.previous') !!}
@endif @endif
{{-- Next Page Link --}} @if ($paginator->hasMorePages()) @if(method_exists($paginator,'getCursorName'))
{!! __('pagination.next') !!}
@else
{!! __('pagination.next') !!}
@endif @else
{!! __('pagination.next') !!}
@endif
@endif