Answers for "laravel paginate links two collections"

PHP
1

laravel multiple paginate

# use default 'page' for this
$collection1 = Model::paginate(20);

# use custom 'other_page' for this
$collection2 = Model2::paginate(20);
$collection2->setPageName('other_page');
Posted by: Guest on May-24-2020

Browse Popular Code Answers by Language