方法Paginate在laravel 5.5中不存在

时间:2017-12-24 16:27:53

标签: laravel pagination

public function index(Tag $tag){

    //$posts=$tag->posts;

    $posts=$tag->posts->paginate(10);

    return view('posts.index' , compact('posts'));
}

1 个答案:

答案 0 :(得分:1)

使用关系,而不是财产:

$tag->posts()->paginate(10);

当您使用属性时,查询已经执行,您无法在集合上使用paginate()方法。