Too much grep

This commit is contained in:
Dane Everitt 2018-01-06 12:49:32 -06:00
parent 532ee98663
commit 59f8ae4b50
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
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());
}
}