HasQuickSearch
trait HasQuickSearch
Trait HasQuickSearch.
Properties
static string | $searchKey | ||
protected array|string|Closure | $search | ||
Collection | $columns | ||
Tools | $tools |
Methods
quickSearch($search = null)
No description
mixed|void
applyQuickSearch()
Apply the search query to the query.
addWhereBindings(string $query)
Add where bindings.
array
parseQueryBindings(array $queries)
Parse quick query bindings.
addWhereLikeBinding(string $column, bool $or, string $pattern)
Add where like binding to model query.
addWhereDatetimeBinding(string $column, bool $or, string $function, string $value)
Add where date time function binding to model query.
addWhereInBinding(string $column, bool $or, bool $not, string $values)
Add where in binding to the model query.
addWhereBetweenBinding(string $column, bool $or, string $start, string $end)
Add where between binding to the model query.
addWhereBasicBinding(string $column, bool $or, string $operator, string $value)
Add where basic binding to the model query.
Details
at line 37
QuickSearch
quickSearch($search = null)
No description
at line 56
protected mixed|void
applyQuickSearch()
Apply the search query to the query.
at line 85
protected
addWhereBindings(string $query)
Add where bindings.
at line 129
protected array
parseQueryBindings(array $queries)
Parse quick query bindings.
at line 167
protected
addWhereLikeBinding(string $column, bool $or, string $pattern)
Add where like binding to model query.
at line 185
protected
addWhereDatetimeBinding(string $column, bool $or, string $function, string $value)
Add where date time function binding to model query.
at line 200
protected
addWhereInBinding(string $column, bool $or, bool $not, string $values)
Add where in binding to the model query.
at line 225
protected
addWhereBetweenBinding(string $column, bool $or, string $start, string $end)
Add where between binding to the model query.
at line 240
protected
addWhereBasicBinding(string $column, bool $or, string $operator, string $value)
Add where basic binding to the model query.