Methods |
public
|
__construct(Model $model, string $query, Closure $callback = null, bool $softDelete = false): void
Create a new search builder instance.
Create a new search builder instance.
Overrides
|
#
|
public
|
__call($method, $parameters)
|
#
|
public
|
scope(Closure $callback)
|
#
|
public
|
where(string $field, mixed $value): $this
Add a constraint to the search query.
Add a constraint to the search query.
Overrides
|
#
|
public
|
withTrashed(): $this
Include soft deleted records in the results.
Include soft deleted records in the results.
Overrides
|
#
|
public
|
onlyTrashed(): $this
Include only soft deleted records in the results.
Include only soft deleted records in the results.
Overrides
|
#
|
public
|
orderByScore(string $direction = 'desc'): $this
Order the query by score.
Order the query by score.
|
#
|
public
|
only(string|array|Arrayable $fields): $this
Restrict the search to the provided field(s).
Restrict the search to the provided field(s).
|
#
|
public
|
mode(string $mode): $this
Switches to the provided mode.
Switches to the provided mode.
|
#
|
public
|
inNaturalLanguageMode(): $this
Switches to natural language mode.
Switches to natural language mode.
|
#
|
public
|
withQueryExpansion(): $this
Switches to natural language mode with query expansion.
Switches to natural language mode with query expansion.
|
#
|
public
|
inBooleanMode(): $this
Switches to boolean mode.
Switches to boolean mode.
|
#
|
public
|
count(): int
Returns the total number of hits
Returns the total number of hits
|
#
|