tzh1994

103 经验值

后端:
$user_list = DB::table('user')->select('id','nickname','phone','c_time')->orderBy('c_time','desc')->paginate(3);

return view('admin.user.userlist',array(

        'user_list' => $user_list,

));

前端html照文档说明:
$user_list->links()

结果:
(1/1) FatalErrorException
Call to undefined method stdClass::render()
in 116a9bf9ec3662b364f0bb62e5f8eb5709ad60ed.php (line 80)
这里的80行是我输出的地方,但是真不知道是什么原因,个人估计是需要引入个什么类,求大神赐教!