Level 7
In short, no. You can only paginate the primary collection.
1 like
Hello,
Is it possible to paginate an eager loaded relation?
I've got this:
$message = Message::with('files', 'user', 'reactions')
->orderBy('created_at', 'DESC')
->paginate(1);
And I would like to paginate the reactions?
In short, no. You can only paginate the primary collection.
Please or to participate in this conversation.