Laravel Multiple Pagination in one page

后端 未结 10 1738
独厮守ぢ
独厮守ぢ 2020-11-27 16:15

I\'m having some trouble with my pagination. I\'m having two tables with data from a database and I paginated it with laravel Paginator.

Now my problem is when you g

10条回答
  •  一整个雨季
    2020-11-27 17:19

    Use:

    $var1 = DB1::orderBy('...')->paginate(5, ['*'], '1pagination');
    
    $var2 = DB2::orderBy('...')->paginate(5, ['*'], '2pagination');
    

    For Laravel 5.2

提交回复
热议问题