<{!!$paginator->onFirstPage()
? 'span'
: 'a href="' . $paginator->previousPageUrl() . '"'
!!}
class="relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm leading-5 font-medium {{$paginator->onFirstPage() ? 'text-gray-500' : 'text-gray-700'}} hover:text-gray-400 focus:z-10 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150"
>
Previous
onFirstPage() ? 'span' : 'a' }}>
<{!!$paginator->hasMorePages()
? 'a href="' . $paginator->nextPageUrl() . '"'
: 'span'
!!}
class="-ml-px relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm leading-5 font-medium {{$paginator->hasMorePages() ? 'text-gray-700' : 'text-gray-500'}} hover:text-gray-400 focus:z-10 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150"
>
Next
hasMorePages() ? 'a' : 'span' }}>