Welcome Guest, Not a member yet? Register   Sign In
Pagination with Join Query
#1

Hi, maybe it's as simple as I am missing something in the documentation and or my search criteria. I've played around with building queries, etc and can't seem to break this problem.

Could someone point me in the direction (via documentation/code sample/function) of how to join two models/tables and still be able to use pagination in CI 4? 

Thanks for any help that you may offer.
Reply
#2

I think you would need to use manual pagination: https://codeigniter4.github.io/userguide...pagination
CodeIgniter 4 tutorials (EN/FR) - https://includebeer.com
/*** NO support in private message - Use the forum! ***/
Reply
#3

Most of the times you can intermingle calls with your model and the query builder together. So you should be able to do something like:

PHP Code:
$users $userModel->join('foo''foo.user_id = users.id')->paginate(); 
Reply
#4

Thank you both. I have my answer.
Reply
#5

(03-09-2020, 11:09 AM)kick Wrote: Thank you both. I have my answer.
how you can do that , may I know your solved script ?
Reply




Theme © iAndrew 2016 - Forum software by © MyBB