Laravel Multiple Pagination in one page

后端 未结 10 1762
独厮守ぢ
独厮守ぢ 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 16:58

    This is late, but it works with laravel 7.x

    $messages = Message::where('status', 0)
        ->paginate(10, ['*'], 'p')
        ->appends(Arr::except(Request::query(), 'p'));
    

    In your view, example(inbox.blade.php)

    {{$messages->links()}}
    

提交回复
热议问题