使用db :: paginate()

时间:2019-10-04 02:08:40

标签: php mysql laravel resources laravel-6

当我使用laravel Collection和DB查询分页时。得到以下错误。

new UserCollection(DB::table('users')->paginate());

e

我正在按以下方式使用分页

new UserCollection(User::paginate());

它的工作原理如下。

en

我已经从Laravel 5.8升级到了6。

1 个答案:

答案 0 :(得分:0)

尝试一次

 User::paginate();
You need to convert stdClass to array