当我使用laravel Collection和DB查询分页时。得到以下错误。
new UserCollection(DB::table('users')->paginate());
我正在按以下方式使用分页
new UserCollection(User::paginate());
它的工作原理如下。
我已经从Laravel 5.8升级到了6。
答案 0 :(得分:0)
尝试一次
User::paginate();
You need to convert stdClass to array