Too much grep

This commit is contained in:
Dane Everitt
2018-01-06 12:49:32 -06:00
parent 532ee98663
commit 59f8ae4b50
4 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ class PackRepository extends EloquentRepository implements PackRepositoryInterfa
public function paginateWithEggAndServerCount(): LengthAwarePaginator
{
return $this->getBuilder()->with('egg')->withCount('servers')
->setSearchTerm($this->getSearchTerm())
->search($this->getSearchTerm())
->paginate(50, $this->getColumns());
}
}