Builder
class Builder (View source)
Properties
protected Builder | $query | The base query builder instance. | |
protected Model | $model | The model being queried. | |
protected array | $eagerLoad | The relationships that should be eager loaded. | |
protected array | $macros | All of the registered builder macros. | |
protected Closure | $onDelete | A replacement for the typical delete function. | |
protected array | $passthru | The methods that should be returned from query builder. | |
protected array | $scopes | Applied global scopes. | |
protected array | $removedScopes | Removed global scopes. |
Methods
void | __construct(Builder $query) Create a new Eloquent query builder instance. | |
$this | withGlobalScope(string $identifier, Scope|Closure $scope) Register a new global scope. | |
$this | withoutGlobalScope(Scope|string $scope) Remove a registered global scope. | |
$this | withoutGlobalScopes(array $scopes = null) Remove all or passed registered global scopes. | |
array | removedScopes() Get an array of global scopes that were removed from the query. | |
Model|Collection|Builder[]|Builder|null | find(mixed $id, array $columns = ['*']) Find a model by its primary key. | |
Collection | findMany(array $ids, array $columns = ['*']) Find multiple models by their primary keys. | |
Model|Collection | findOrFail(mixed $id, array $columns = ['*']) Find a model by its primary key or throw an exception. | |
Model | findOrNew(mixed $id, array $columns = ['*']) Find a model by its primary key or return fresh model instance. | |
Model | firstOrNew(array $attributes) Get the first record matching the attributes or instantiate it. | |
Model | firstOrCreate(array $attributes, array $values = []) Get the first record matching the attributes or create it. | |
Model | updateOrCreate(array $attributes, array $values = []) Create or update a record matching the attributes, and fill it with values. | |
Model|Builder|null | first(array $columns = ['*']) Execute the query and get the first result. | |
Model|Builder | firstOrFail(array $columns = ['*']) Execute the query and get the first result or throw an exception. | |
Collection|Builder[] | get(array $columns = ['*']) Execute the query as a "select" statement. | |
mixed | value(string $column) Get a single column's value from the first result of a query. | |
Generator | cursor() Get a generator for the given query. | |
bool | chunk(int $count, callable $callback) Chunk the results of the query. | |
bool | chunkById(int $count, callable $callback, string $column = 'id') Chunk the results of a query by comparing numeric IDs. | |
bool | each(callable $callback, int $count = 1000) Execute a callback over each item while chunking. | |
Collection | pluck(string $column, string|null $key = null) Get an array with the values of a given column. | |
LengthAwarePaginator | paginate(int $perPage = null, array $columns = ['*'], string $pageName = 'page', int|null $page = null) Paginate the given query. | |
Paginator | simplePaginate(int $perPage = null, array $columns = ['*'], string $pageName = 'page', int|null $page = null) Paginate the given query into a simple paginator. | |
int | update(array $values) Update a record in the database. | |
int | increment(string $column, int $amount = 1, array $extra = []) Increment a column's value by a given amount. | |
int | decrement(string $column, int $amount = 1, array $extra = []) Decrement a column's value by a given amount. | |
array | addUpdatedAtColumn(array $values) Add the "updated at" column to an array of values. | |
mixed | delete() Delete a record from the database. | |
mixed | forceDelete() Run the default delete function on the builder. | |
void | onDelete(Closure $callback) Register a replacement for the default delete function. | |
Model[] | getModels(array $columns = ['*']) Get the hydrated models without eager loading. | |
array | eagerLoadRelations(array $models) Eager load the relationships for the models. | |
array | loadRelation(array $models, string $name, Closure $constraints) Eagerly load the relationship on a set of models. | |
Relation | getRelation(string $name) Get the relation instance for the given relation name. | |
array | nestedRelations(string $relation) Get the deeply nested relations for a given top-level relation. | |
bool | isNested(string $name, string $relation) Determine if the relationship is nested. | |
$this | when(bool $value, Closure $callback, Closure $default = null) Apply the callback's query changes if the given "value" is true. | |
$this | where(string|Closure $column, string $operator = null, mixed $value = null, string $boolean = 'and') Add a basic where clause to the query. | |
Builder|Builder | orWhere(string|Closure $column, string $operator = null, mixed $value = null) Add an "or where" clause to the query. | |
Builder|Builder | has(string $relation, string $operator = '>=', int $count = 1, string $boolean = 'and', Closure $callback = null) Add a relationship count / exists condition to the query. | |
Builder|Builder | hasNested(string $relations, string $operator = '>=', int $count = 1, string $boolean = 'and', Closure|null $callback = null) Add nested relationship count / exists conditions to the query. | |
Builder|Builder | doesntHave(string $relation, string $boolean = 'and', Closure $callback = null) Add a relationship count / exists condition to the query. | |
Builder|Builder | whereHas(string $relation, Closure $callback = null, string $operator = '>=', int $count = 1) Add a relationship count / exists condition to the query with where clauses. | |
Builder|Builder | whereDoesntHave(string $relation, Closure $callback = null) Add a relationship count / exists condition to the query with where clauses. | |
Builder|Builder | orHas(string $relation, string $operator = '>=', int $count = 1) Add a relationship count / exists condition to the query with an "or". | |
Builder|Builder | orWhereHas(string $relation, Closure $callback, string $operator = '>=', int $count = 1) Add a relationship count / exists condition to the query with where clauses and an "or". | |
Builder|Builder | addHasWhere(Builder $hasQuery, Relation $relation, string $operator, int $count, string $boolean) Add the "has" condition where clause to the query. | |
bool | shouldRunExistsQuery(string $operator, int $count) Check if we can run an "exists" query to optimize performance. | |
$this | whereCountQuery(Builder $query, string $operator = '>=', int $count = 1, string $boolean = 'and') Add a sub query count clause to the query. | |
Builder|Builder | mergeModelDefinedRelationConstraints(Builder $relation) Merge the constraints from a relation query to the current query. | |
Relation | getHasRelationQuery(string $relation) Get the "has relation" base query instance. | |
$this | with(mixed $relations) Set the relationships that should be eager loaded. | |
$this | without(mixed $relations) Prevent the specified relations from being eager loaded. | |
$this | withCount(mixed $relations) Add subselect queries to count the relations. | |
array | parseWithRelations(array $relations) Parse a list of relations into individuals. | |
array | parseNestedWith(string $name, array $results) Parse the nested relationships in a relation. | |
mixed | scopes(array $scopes) Add the given scopes to the current builder instance. | |
mixed | callScope(callable $scope, array $parameters = []) Apply the given scope on the current builder instance. | |
Builder|Builder | applyScopes() Apply the scopes to the Eloquent builder instance and return it. | |
bool | shouldNestWheresForScope(Builder $query, int $originalWhereCount) Determine if the scope added after the given offset should be nested. | |
void | nestWheresForScope(Builder $query, int $originalWhereCount) Nest where conditions by slicing them at the given where count. | |
void | addNestedWhereSlice(Builder $query, array $wheres, int $offset, int $length = null) Slice where conditions at the given offset and add them to the query as a nested condition. | |
array | nestWhereSlice(array $whereSlice, string $boolean = 'and') Create a where array with nested where conditions. | |
Builder | getQuery() Get the underlying query builder instance. | |
Builder | toBase() Get a base query builder instance. | |
$this | setQuery(Builder $query) Set the underlying query builder instance. | |
array | getEagerLoads() Get the relationships being eagerly loaded. | |
$this | setEagerLoads(array $eagerLoad) Set the relationships being eagerly loaded. | |
Model | getModel() Get the model instance being queried. | |
$this | setModel(Model $model) Set a model instance for the model being queried. | |
void | macro(string $name, Closure $callback) Extend the builder with a given callback. | |
Closure | getMacro(string $name) Get the given macro by name. | |
mixed | __call(string $method, array $parameters) Dynamically handle calls into the query instance. | |
void | __clone() Force a clone of the underlying query builder when cloning. |
Details
void __construct(Builder $query)
Create a new Eloquent query builder instance.
$this withoutGlobalScope(Scope|string $scope)
Remove a registered global scope.
$this withoutGlobalScopes(array $scopes = null)
Remove all or passed registered global scopes.
array removedScopes()
Get an array of global scopes that were removed from the query.
Model|Collection|Builder[]|Builder|null find(mixed $id, array $columns = ['*'])
Find a model by its primary key.
Collection findMany(array $ids, array $columns = ['*'])
Find multiple models by their primary keys.
Model|Collection findOrFail(mixed $id, array $columns = ['*'])
Find a model by its primary key or throw an exception.
Model findOrNew(mixed $id, array $columns = ['*'])
Find a model by its primary key or return fresh model instance.
Model firstOrNew(array $attributes)
Get the first record matching the attributes or instantiate it.
Model firstOrCreate(array $attributes, array $values = [])
Get the first record matching the attributes or create it.
Model updateOrCreate(array $attributes, array $values = [])
Create or update a record matching the attributes, and fill it with values.
Model|Builder firstOrFail(array $columns = ['*'])
Execute the query and get the first result or throw an exception.
Collection|Builder[] get(array $columns = ['*'])
Execute the query as a "select" statement.
mixed value(string $column)
Get a single column's value from the first result of a query.
Generator cursor()
Get a generator for the given query.
bool chunk(int $count, callable $callback)
Chunk the results of the query.
bool chunkById(int $count, callable $callback, string $column = 'id')
Chunk the results of a query by comparing numeric IDs.
bool each(callable $callback, int $count = 1000)
Execute a callback over each item while chunking.
Collection pluck(string $column, string|null $key = null)
Get an array with the values of a given column.
LengthAwarePaginator paginate(int $perPage = null, array $columns = ['*'], string $pageName = 'page', int|null $page = null)
Paginate the given query.
Paginator simplePaginate(int $perPage = null, array $columns = ['*'], string $pageName = 'page', int|null $page = null)
Paginate the given query into a simple paginator.
int update(array $values)
Update a record in the database.
int increment(string $column, int $amount = 1, array $extra = [])
Increment a column's value by a given amount.
int decrement(string $column, int $amount = 1, array $extra = [])
Decrement a column's value by a given amount.
protected array addUpdatedAtColumn(array $values)
Add the "updated at" column to an array of values.
mixed delete()
Delete a record from the database.
mixed forceDelete()
Run the default delete function on the builder.
void onDelete(Closure $callback)
Register a replacement for the default delete function.
Model[] getModels(array $columns = ['*'])
Get the hydrated models without eager loading.
array eagerLoadRelations(array $models)
Eager load the relationships for the models.
protected array loadRelation(array $models, string $name, Closure $constraints)
Eagerly load the relationship on a set of models.
Relation getRelation(string $name)
Get the relation instance for the given relation name.
protected array nestedRelations(string $relation)
Get the deeply nested relations for a given top-level relation.
protected bool isNested(string $name, string $relation)
Determine if the relationship is nested.
$this when(bool $value, Closure $callback, Closure $default = null)
Apply the callback's query changes if the given "value" is true.
$this where(string|Closure $column, string $operator = null, mixed $value = null, string $boolean = 'and')
Add a basic where clause to the query.
Builder|Builder orWhere(string|Closure $column, string $operator = null, mixed $value = null)
Add an "or where" clause to the query.
Builder|Builder has(string $relation, string $operator = '>=', int $count = 1, string $boolean = 'and', Closure $callback = null)
Add a relationship count / exists condition to the query.
protected Builder|Builder hasNested(string $relations, string $operator = '>=', int $count = 1, string $boolean = 'and', Closure|null $callback = null)
Add nested relationship count / exists conditions to the query.
Builder|Builder doesntHave(string $relation, string $boolean = 'and', Closure $callback = null)
Add a relationship count / exists condition to the query.
Builder|Builder whereHas(string $relation, Closure $callback = null, string $operator = '>=', int $count = 1)
Add a relationship count / exists condition to the query with where clauses.
Builder|Builder whereDoesntHave(string $relation, Closure $callback = null)
Add a relationship count / exists condition to the query with where clauses.
Builder|Builder orHas(string $relation, string $operator = '>=', int $count = 1)
Add a relationship count / exists condition to the query with an "or".
Builder|Builder orWhereHas(string $relation, Closure $callback, string $operator = '>=', int $count = 1)
Add a relationship count / exists condition to the query with where clauses and an "or".
protected Builder|Builder addHasWhere(Builder $hasQuery, Relation $relation, string $operator, int $count, string $boolean)
Add the "has" condition where clause to the query.
protected bool shouldRunExistsQuery(string $operator, int $count)
Check if we can run an "exists" query to optimize performance.
protected $this whereCountQuery(Builder $query, string $operator = '>=', int $count = 1, string $boolean = 'and')
Add a sub query count clause to the query.
Builder|Builder mergeModelDefinedRelationConstraints(Builder $relation)
Merge the constraints from a relation query to the current query.
protected Relation getHasRelationQuery(string $relation)
Get the "has relation" base query instance.
$this with(mixed $relations)
Set the relationships that should be eager loaded.
$this without(mixed $relations)
Prevent the specified relations from being eager loaded.
$this withCount(mixed $relations)
Add subselect queries to count the relations.
protected array parseWithRelations(array $relations)
Parse a list of relations into individuals.
protected array parseNestedWith(string $name, array $results)
Parse the nested relationships in a relation.
mixed scopes(array $scopes)
Add the given scopes to the current builder instance.
protected mixed callScope(callable $scope, array $parameters = [])
Apply the given scope on the current builder instance.
protected bool shouldNestWheresForScope(Builder $query, int $originalWhereCount)
Determine if the scope added after the given offset should be nested.
protected void nestWheresForScope(Builder $query, int $originalWhereCount)
Nest where conditions by slicing them at the given where count.
protected void addNestedWhereSlice(Builder $query, array $wheres, int $offset, int $length = null)
Slice where conditions at the given offset and add them to the query as a nested condition.
protected array nestWhereSlice(array $whereSlice, string $boolean = 'and')
Create a where array with nested where conditions.
Builder getQuery()
Get the underlying query builder instance.
Builder toBase()
Get a base query builder instance.
$this setQuery(Builder $query)
Set the underlying query builder instance.
array getEagerLoads()
Get the relationships being eagerly loaded.
$this setEagerLoads(array $eagerLoad)
Set the relationships being eagerly loaded.
Model getModel()
Get the model instance being queried.
$this setModel(Model $model)
Set a model instance for the model being queried.
void macro(string $name, Closure $callback)
Extend the builder with a given callback.
Closure getMacro(string $name)
Get the given macro by name.
mixed __call(string $method, array $parameters)
Dynamically handle calls into the query instance.
void __clone()
Force a clone of the underlying query builder when cloning.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Database/Eloquent/Builder.html