Saturday, March 11, 2017

How to make pagination after merge two collections?

I use the standart method for pagination:

$ann = Ann::get()->orderBy('id', 'desc')->paginate($limit);

After I do merge $ann with another collection:

$ann = $ann->merge($ann_subscribed);
            $ann = $ann->all();

In result I get $ann = $ann->all(); without pagination



via Darama

Advertisement