分页报错,$students 可以获取数据。没有分页前表单显示也没问题
操作:
public function index(){
$students = Student::paginate(3);
//echo "<pre>";
//var_dump($students);
return view('student.index',['student'=>$students]);
}
模板:
<div class = "pull-right" >
{{ $student->render() }}
</div>
报错:
ErrorException in Builder.php line 2093:Call to undefined method Illuminate\Database\Query\Builder::render() (View: D:\phpStudy\WWW\lara5.1\resources\views\student\index.blade.php)