타사를 이용합니다. 여기에서 얻을 : 파일 저장소에서 https://github.com/andersao/l5-repository페이지 매기기와 findwhere를 같은 방법으로 사용 하시겠습니까? (laravel 5.3)
내 함수는 다음과 같다 : 실행되면
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 (...)'가 있습니다. 여기를보세요 : https://github.com/andersao/l5-repository –
@mosestoh 주위를 파고 나서 나는 해결책을 찾았다 고 확신합니다. 답변을 업데이트했습니다. – devk
오류가 있습니다 :'부재중 전화 기능 paginate() on null ' –