Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

username1's avatar

Error: Property [$numberOfPaginatorsRendered] not found on component: [j-o-m-s.job-order-data-table]

When I tried to put the {{ $job_orders->links() }} Error: Property [$numberOfPaginatorsRendered] not found on component: [j-o-m-s.job-order-data-table]

0 likes
4 replies
jaseofspades88's avatar

Sounds like you have a $numberOfPaginatorsRendered in your view file but you don't have a public int $numberOfPaginatorsRendered; property your livewire component.

all1.ai's avatar

The ->links() function needs to use the data from ->paginate(), seems like your $Job_order is empty and has not pagination info. Look at your paination query and make sure it returns data or check for it in the view.

camden's avatar

The WithPagination trait should be added to the Livewire component.

1 like

Please or to participate in this conversation.