Lars-Janssen's avatar

Eager loading pagination

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?

0 likes
3 replies
primordial's avatar
Level 7

In short, no. You can only paginate the primary collection.

1 like
getvma's avatar

you would need to make an ajax request for the paginated reactions for each primary record of your table.

Or you can use the inverse of the relationship to paginate reactions.

1 like

Please or to participate in this conversation.