{{ $paginator->count() }} data out of {{ $paginator->total() }}   |  total {{ $paginator->lastPage() }} pages   |  Current Page {{ $paginator->currentPage() }}
@if($paginator->hasPages())
@if($paginator->onFirstPage())   Previous   @else   Previous   @endif
    @php $start = max($paginator->currentPage() - 5, 1); $end = min($paginator->currentPage() + 5, $paginator->lastPage()); @endphp @for($i = $start; $i <= $end; $i++)
  • {{ $i }}
  • @endfor
@if($paginator->hasMorePages()) Next   @else   Page End @endif
@endif