Cleanup mount code; automatically include the mount in the configuration

This commit is contained in:
Dane Everitt
2020-09-13 09:59:54 -07:00
parent 8c6c271916
commit 9a21584c42
8 changed files with 69 additions and 20 deletions

View File

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