{{-- Author By : zulfazdliabuas@gmail.com | Date : 2026 --}} @props([ 'paginator', 'class' => '', 'perPageOptions' => [5, 10, 20, 50], ]) @php $perPage = (int) request('per_page', $paginator->perPage()); $query = request()->except(['page', 'per_page']); @endphp @if($paginator->total() > 0)
@foreach($query as $key => $value) @if(is_array($value)) @foreach($value as $child) @endforeach @elseif($value !== null && $value !== '') @endif @endforeach
@if($paginator->hasPages()) @endif
@endif