由于我现在要在数据库中放入大量数据,因此需要使用laravel的分页。但是,它似乎在我的其他查询中不起作用。还有其他方法吗?还是我做错了什么?
我的代码如下所示
$exams = Exam::with('users')->where('id',$userID)->paginate(5);
$questions = Question::with(['exams','choices'])->where('exam_id', $examID)->paginate(5);
{{ $exams->links() }} ---- exams view
{{ $questions->links()}} ---- questions view
Call to undefined method App\Question::links()
<div class="card">
<div class="card-body">
@foreach($questions as $index => $questions)
{{$questions}}
@endforeach
</div>
<div class="mt-3 d-flex justify-content-end text-right">
{{$questions->links()}}
</div>
</div>