gpt4 book ai didi

php - laravel 中的分页

转载 作者:行者123 更新时间:2023-11-29 01:20:16 25 4
gpt4 key购买 nike

我正在尝试在 Laravel 中创建分页,但它不起作用。

代码如下:

$result=DB::table('sample')
->select()
->where('id','=',1)->orWhere('id','=',2)
->get()->paginate(10);
return $result;

最佳答案

试试这个:

$result=DB::table('sample')
->select()
->where('id','=',1)->orWhere('id','=',2)
->paginate(10);
return $result;

Paginate 不适用于 get

关于php - laravel 中的分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40356052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com