$page = Question::paginate(10);
dd($page);
这里的分页工作得很好,但是当我使用与其他模型关系的分页时,它会产生分页结果,但分页链接不会出现,因为它会产生错误
$questions = Course::with(['questions' => function($query){
$query->paginate(10);
},'questions.subjects','questions.years'])
->where("status",1)
->where(function ($query) use ($course) {
$query->orWhere('course', '=', $course)
->orWhere('slug', '=', $course);
})->get();
错误 :
BadMethodCallException in Macroable.php line 81:
Method render does not exist.
这里缺少什么。