Answer the question
In order to leave comments, you need to log in
laravel pagination?
Hello. I warn you in advance, I'm a newbie, so sorry if this is a dumb question.
There is a table with Posts (the title, text and author's id are stored) and a Followers table (the user's id and the id of the user to which he is subscribed are stored)
How can I get only those posts whose authors are the users we are subscribed to and so that pagination works?
Answer the question
In order to leave comments, you need to log in
Post::select()->join('subscribers', 'posts.author_id', 'subscribers.author_id')->where('subscribers.user_id', 1)->paginate(15);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question