【发布时间】:2017-01-19 21:54:36
【问题描述】:
我使用第三方。我从这里得到:https://github.com/andersao/l5-repository
我在文件存储库中的功能是这样的:
public function displayList($year, $id = NULL)
{
$clauses = ['year' => $year];
if(isset($id)) {
$clauses = array_merge($clauses, ['id' => $id]);
}
$query = Self::orderBy('programcode')
->orderBy('accountcode')
->findWhere($clauses)
->paginate(1);
return $query;
}
执行时,出现如下错误:Method paginate does not exist.。
我尝试删除->findWhere($clauses)。有用。没有错误。
Findwhere 和 paginate 显然不能同时运行
这个问题有解决办法吗?
【问题讨论】:
标签: php laravel repository laravel-5.3