Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的分页似乎不起作用。我是这样做的:
$players = Auth::user()->players->paginate(2);
然后完成视图中需要的所有内容,但是:
Call to undefined method Illuminate\Database\Eloquent\Collection::paginate()
它显示了该变量所在的行。
尝试
Auth::user()->players()->paginate(2);
Auth::user()->players返回一个集合,该paginate函数属于BuilderEloquent 的类。
Auth::user()->players
paginate
Builder
没关系,自己解决了:
解决方案: