有没有人在框架之外使用Laravels分页和雄辩。
我明白了:
ReflectionException
Class paginator does not exist
当我打电话时:
public function indexAction()
{
// $results = News::get(); <--- this works fine
$results = News::paginate(6); <--- this does not
return $this->renderView('index', compact('results', 'pagination'));
}
所有内容都是自动加载并通过作曲家安装,因此无法想象那里有任何问题。
任何人都有这方面的经验吗?