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]
Sounds like you have a $numberOfPaginatorsRendered in your view file but you don't have a public int $numberOfPaginatorsRendered; property your livewire component.
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.