Skip to content

Commit

Permalink
feat: add filters to Address and Estate Search
Browse files Browse the repository at this point in the history
  • Loading branch information
kauffinger committed Nov 8, 2024
1 parent c59ec55 commit af3fed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Query/AddressBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ public function search(): Collection
OnOfficeService::INPUT => $this->input,
OnOfficeService::SORTBY => data_get(array_keys($this->orderBy), 0),
OnOfficeService::SORTORDER => data_get($this->orderBy, 0),
OnOfficeService::FILTER => $this->getFilters(),
...$this->customParameters,
],
);
Expand Down
1 change: 1 addition & 0 deletions src/Query/EstateBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ public function search(): Collection
OnOfficeService::INPUT => $this->input,
OnOfficeService::SORTBY => data_get(array_keys($this->orderBy), 0),
OnOfficeService::SORTORDER => data_get($this->orderBy, 0),
OnOfficeService::FILTER => $this->getFilters(),
...$this->customParameters,
],
);
Expand Down

0 comments on commit af3fed8

Please sign in to comment.