public function index(Tag $tag){
//$posts=$tag->posts;
$posts=$tag->posts->paginate(10);
return view('posts.index' , compact('posts'));
}
答案 0 :(得分:1)
使用关系,而不是财产:
$tag->posts()->paginate(10);
当您使用属性时,查询已经执行,您无法在集合上使用paginate()
方法。