Methods |
public
|
__construct(TModel $model, string $query, Closure|null $callback = null, bool $softDelete = false): void
Create a new search builder instance.
Create a new search builder instance.
Overriden by
|
#
|
public
|
within(string $index): $this
Specify a custom index to perform this search on.
Specify a custom index to perform this search on.
|
#
|
public
|
where(string $field, mixed $value): $this
Add a constraint to the search query.
Add a constraint to the search query.
Overriden by
|
#
|
public
|
whereIn(string $field, Arrayable|array $values): $this
Add a "where in" constraint to the search query.
Add a "where in" constraint to the search query.
|
#
|
public
|
whereNotIn(string $field, Arrayable|array $values): $this
Add a "where not in" constraint to the search query.
Add a "where not in" constraint to the search query.
|
#
|
public
|
withTrashed(): $this
Include soft deleted records in the results.
Include soft deleted records in the results.
Overriden by
|
#
|
public
|
onlyTrashed(): $this
Include only soft deleted records in the results.
Include only soft deleted records in the results.
Overriden by
|
#
|
public
|
take(int $limit): $this
Set the "limit" for the search query.
Set the "limit" for the search query.
|
#
|
public
|
orderBy(string $column, string $direction = 'asc'): $this
Add an "order" for the search query.
Add an "order" for the search query.
|
#
|
public
|
orderByDesc(string $column): $this
Add a descending "order by" clause to the search query.
Add a descending "order by" clause to the search query.
|
#
|
public
|
latest(string $column = null): $this
Add an "order by" clause for a timestamp to the query.
Add an "order by" clause for a timestamp to the query.
|
#
|
public
|
oldest(string $column = null): $this
Add an "order by" clause for a timestamp to the query.
Add an "order by" clause for a timestamp to the query.
|
#
|
public
|
options(array $options): $this
Set extra options for the search query.
Set extra options for the search query.
|
#
|
public
|
query(callable $callback): $this
Set the callback that should have an opportunity to modify the database query.
Set the callback that should have an opportunity to modify the database query.
|
#
|
public
|
raw(): mixed
Get the raw results of the search.
Get the raw results of the search.
|
#
|
public
|
withRawResults(callable $callback): $this
Set the callback that should have an opportunity to inspect and modify the raw result returned by the search engine.
Set the callback that should have an opportunity to inspect and modify the raw result returned by the search engine.
|
#
|
public
|
keys(): Collection
Get the keys of search results.
Get the keys of search results.
|
#
|
public
|
first(): TModel
Get the first result from the search.
Get the first result from the search.
|
#
|
public
|
get(): Collection<int, TModel>
Get the results of the search.
Get the results of the search.
|
#
|
public
|
cursor(): LazyCollection<int, TModel>
Get the results of the search as a "lazy collection" instance.
Get the results of the search as a "lazy collection" instance.
|
#
|
public
|
simplePaginate(int $perPage = null, string $pageName = 'page', int|null $page = null): Paginator
Paginate the given query into a simple paginator.
Paginate the given query into a simple paginator.
|
#
|
public
|
simplePaginateRaw(int $perPage = null, string $pageName = 'page', int|null $page = null): Paginator
Paginate the given query into a simple paginator with raw data.
Paginate the given query into a simple paginator with raw data.
|
#
|
public
|
paginate(int $perPage = null, string $pageName = 'page', int|null $page = null): LengthAwarePaginator
Paginate the given query into a paginator.
Paginate the given query into a paginator.
|
#
|
public
|
paginateRaw(int $perPage = null, string $pageName = 'page', int|null $page = null): LengthAwarePaginator
Paginate the given query into a paginator with raw data.
Paginate the given query into a paginator with raw data.
|
#
|
protected
|
getTotalCount(mixed $results): int
Get the total number of results from the Scout engine, or fallback to query builder.
Get the total number of results from the Scout engine, or fallback to query builder.
|
#
|
public
|
applyAfterRawSearchCallback(mixed $results): mixed
Invoke the "after raw search" callback.
Invoke the "after raw search" callback.
|
#
|
protected
|
engine(): mixed
Get the engine that should handle the query.
Get the engine that should handle the query.
|
#
|