我开发了一个 laravel 应用程序,我想对视图进行分页,
看看我的控制器。
$times=DB::table('timesheets')
->leftJoin('users', 'timesheets.timesheet_user', '=', 'users.id')
->leftJoin('projects','projects.project_id','=','timesheets.timesheet_project_id')
->where('timesheet_user','=',$user)
->paginate(5);
return View::make('timesheet/index')->with('times',$times)->with('projects',$projects);
最终获得结果,但是当我尝试显示链接时。它显示如下错误,
Call to undefined method stdClass::links()
<?php echo $times->links(); ?>
我的代码有什么错误?
谢谢