@if ($paginator->onFirstPage())
‹ Prev@else
‹ Prev@endif
@foreach ($elements as $el)
@if (is_string($el))
{{ $el }}@endif
@if (is_array($el)) @foreach ($el as $p => $u)
@if ($p == $paginator->currentPage())
{{ $p }}@else
{{ $p }}@endif
@endforeach @endif
@endforeach
@if ($paginator->hasMorePages())
Next ›@else
Next ›@endif
{{ $paginator->total() }} records
@endif