class QueryBuilder extends Builder

Traits

Properties

protected Builder $query

The base query builder instance.

from  Builder
protected TModel $model

The model being queried.

from  Builder
array $pendingAttributes

The attributes that should be added to new models created by this builder.

from  Builder
protected array $eagerLoad

The relationships that should be eager loaded.

from  Builder
static protected array $macros

All of the globally registered builder macros.

from  Builder
protected array $localMacros

All of the locally registered builder macros.

from  Builder
protected Closure|null $onDelete

A replacement for the typical delete function.

from  Builder
protected list<string> $propertyPassthru

The properties that should be returned from query builder.

from  Builder
protected list<string> $passthru

The methods that should be returned from query builder.

from  Builder
protected array $scopes

Applied global scopes.

from  Builder
protected array $removedScopes

Removed global scopes.

from  Builder
protected Closure> $afterQueryCallbacks

The callbacks that should be invoked after retrieving data from the database.

from  Builder
protected Closure> $onCloneCallbacks

The callbacks that should be invoked on clone.

from  Builder
$this|HigherOrderBuilderProxy read-only $orWhere from  Builder
$this|HigherOrderBuilderProxy read-only $whereNot from  Builder
$this|HigherOrderBuilderProxy read-only $orWhereNot from  Builder

Methods

mixed
when(mixed $value = null, callable|null $callback = null, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) truthy.

mixed
unless(mixed $value = null, callable|null $callback = null, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) falsy.

bool
chunk(int $count, callable $callback)

Chunk the results of the query.

chunkMap(callable $callback, int $count = 1000)

Run a map over each item while chunking.

bool
each(callable $callback, int $count = 1000)

Execute a callback over each item while chunking.

bool
chunkById(int $count, callable $callback, string|null $column = null, string|null $alias = null)

Chunk the results of a query by comparing IDs.

bool
chunkByIdDesc(int $count, callable $callback, string|null $column = null, string|null $alias = null)

Chunk the results of a query by comparing IDs in descending order.

bool
orderedChunkById(int $count, callable $callback, string|null $column = null, string|null $alias = null, SortDirection|bool $descending = false)

Chunk the results of a query by comparing IDs in a given order.

bool
eachById(callable $callback, int $count = 1000, string|null $column = null, string|null $alias = null)

Execute a callback over each item while chunking by ID.

lazy(int $chunkSize = 1000)

Query lazily, by chunks of the given size.

lazyById(int $chunkSize = 1000, string|null $column = null, string|null $alias = null)

Query lazily, by chunking the results of a query by comparing IDs.

lazyByIdDesc(int $chunkSize = 1000, string|null $column = null, string|null $alias = null)

Query lazily, by chunking the results of a query by comparing IDs in descending order.

orderedLazyById(int $chunkSize = 1000, string|null $column = null, string|null $alias = null, SortDirection|bool $descending = false)

Query lazily, by chunking the results of a query by comparing IDs in a given order.

null|TValue
first(array|string $columns = ['*'])

Execute the query and get the first result.

TValue
firstOrFail(array|string $columns = ['*'], string|null $message = null)

Execute the query and get the first result or throw an exception.

TValue
sole(array|string $columns = ['*'])

Execute the query and get the first result if it's the sole matching record.

paginateUsingCursor(int $perPage, array|string $columns = ['*'], string $cursorName = 'cursor', Cursor|string|null $cursor = null)

Paginate the given query using a cursor paginator.

string
getOriginalColumnNameForCursorPagination(Builder|Builder $builder, string $parameter)

Get the original column name of the given column, without any aliasing.

paginator(Collection $items, int $total, int $perPage, int $currentPage, array $options)

Create a new length-aware paginator instance.

simplePaginator(Collection $items, int $perPage, int $currentPage, array $options)

Create a new simple paginator instance.

cursorPaginator(Collection $items, int $perPage, Cursor|null $cursor, array $options)

Create a new cursor paginator instance.

tap(callable $callback)

Pass the query to a given callback and then return it.

TReturn is null|TReturn)
pipe(callable $callback)

Pass the query to a given callback and return the result.

mixed
forwardCallTo(mixed $object, string $method, array $parameters)

Forward a method call to the given object.

mixed
forwardDecoratedCallTo(mixed $object, string $method, array $parameters)

Forward a method call to the given object, returning $this if the forwarded call returned itself.

static never
throwBadMethodCallException(string $method)

Throw a bad method call exception for the given method.

has(Relation|string $relation, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and', Closure|null $callback = null)

Add a relationship count / exists condition to the query.

hasNested(string $relations, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and', Closure|null $callback = null)

Add nested relationship count / exists conditions to the query.

orHas(Relation|string $relation, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with an "or".

doesntHave(Relation|string $relation, string $boolean = 'and', Closure|null $callback = null)

Add a relationship count / exists condition to the query.

orDoesntHave(Relation|string $relation)

Add a relationship count / exists condition to the query with an "or".

whereHas(Relation|string $relation, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with where clauses.

withWhereHas(string $relation, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with where clauses.

orWhereHas(Relation|string $relation, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with where clauses and an "or".

whereDoesntHave(Relation|string $relation, Closure|null $callback = null)

Add a relationship count / exists condition to the query with where clauses.

orWhereDoesntHave(Relation|string $relation, Closure|null $callback = null)

Add a relationship count / exists condition to the query with where clauses and an "or".

hasMorph(MorphTo|string $relation, string|array $types, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and', Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query.

getBelongsToRelation(MorphTo $relation, string $type)

Get the BelongsTo relationship for a single polymorphic type.

orHasMorph(MorphTo|string $relation, string|array $types, string $operator = '>=', Expression|int $count = 1)

Add a polymorphic relationship count / exists condition to the query with an "or".

doesntHaveMorph(MorphTo|string $relation, string|array $types, string $boolean = 'and', Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query.

orDoesntHaveMorph(MorphTo|string $relation, string|array $types)

Add a polymorphic relationship count / exists condition to the query with an "or".

whereHasMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a polymorphic relationship count / exists condition to the query with where clauses.

orWhereHasMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a polymorphic relationship count / exists condition to the query with where clauses and an "or".

whereDoesntHaveMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query with where clauses.

orWhereDoesntHaveMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query with where clauses and an "or".

whereRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a basic where clause to a relationship query.

withWhereRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a basic where clause to a relationship query and eager-load the relationship with the same conditions.

orWhereRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add an "or where" clause to a relationship query.

whereDoesntHaveRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a basic count / exists condition to a relationship query.

orWhereDoesntHaveRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add an "or where" clause to a relationship query.

whereMorphRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with a where clause.

orWhereMorphRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with an "or where" clause.

whereMorphDoesntHaveRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with a doesn't have clause.

orWhereMorphDoesntHaveRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with an "or doesn't have" clause.

whereMorphedTo(MorphTo|string $relation, mixed $model, string $boolean = 'and')

Add a morph-to relationship condition to the query.

whereNotMorphedTo(MorphTo|string $relation, mixed $model, string $boolean = 'and')

Add a not morph-to relationship condition to the query.

orWhereMorphedTo(MorphTo|string $relation, mixed $model)

Add a morph-to relationship condition to the query with an "or where" clause.

orWhereNotMorphedTo(MorphTo|string $relation, mixed $model)

Add a not morph-to relationship condition to the query with an "or where" clause.

whereBelongsTo(mixed $related, string|null $relationshipName = null, string $boolean = 'and')

Add a "belongs to" relationship where clause to the query.

orWhereBelongsTo(mixed $related, string|null $relationshipName = null)

Add a "BelongsTo" relationship with an "or where" clause to the query.

whereAttachedTo(mixed $related, string|null $relationshipName = null, string $boolean = 'and')

Add a "belongs to many" relationship where clause to the query.

orWhereAttachedTo(mixed $related, string|null $relationshipName = null)

Add a "belongs to many" relationship with an "or where" clause to the query.

withAggregate(mixed $relations, Expression|string $column, string|null $function = null)

Add subselect queries to include an aggregate value for a relationship.

string
getRelationHashedColumn(string $column, Relation $relation)

Get the relation hashed column name for the given column and relation.

withCount(mixed $relations)

Add subselect queries to count the relations.

withMax(string|array $relation, Expression|string $column)

Add subselect queries to include the max of the relation's column.

withMin(string|array $relation, Expression|string $column)

Add subselect queries to include the min of the relation's column.

withSum(string|array $relation, Expression|string $column)

Add subselect queries to include the sum of the relation's column.

withAvg(string|array $relation, Expression|string $column)

Add subselect queries to include the average of the relation's column.

withExists(string|array $relation)

Add subselect queries to include the existence of related models.

addHasWhere(Builder $hasQuery, Relation $relation, string $operator, Expression|int $count, string $boolean)

Add the "has" condition where clause to the query.

mergeConstraintsFrom(Builder $from)

Merge the where constraints from another query to the current query.

array
requalifyWhereTables(array $wheres, string $from, string $to)

Updates the table name for any columns with a new qualified name.

addWhereCountQuery(Builder $query, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and')

Add a sub-query count clause to this query.

getRelationWithoutConstraints(string $relation)

Get the "has relation" base query instance.

bool
canUseExistsForExistenceCheck(string $operator, Expression|int $count)

Check if we can run an "exists" query to optimize performance.

__construct(Builder $query)

Create a new Eloquent query builder instance.

from  Builder
make(array $attributes = [])

Create and return an un-saved model instance.

from  Builder
withGlobalScope(string $identifier, Closure|Scope $scope)

Register a new global scope.

from  Builder
withoutGlobalScope(Scope|string $scope)

Remove a registered global scope.

from  Builder
withoutGlobalScopes(array|null $scopes = null)

Remove all or passed registered global scopes.

from  Builder
withoutGlobalScopesExcept(array $scopes = [])

Remove all global scopes except the given scopes.

from  Builder
array
removedScopes()

Get an array of global scopes that were removed from the query.

from  Builder
whereKey(mixed $id)

Add a where clause on the primary key to the query.

from  Builder
whereKeyNot(mixed $id)

Add a where clause on the primary key to the query.

from  Builder
except(mixed $models)

Exclude the given models from the query results.

from  Builder
where(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null, string $boolean = 'and')

Add a basic where clause to the query.

from  Builder
Model|null
firstWhere(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null, string $boolean = 'and')

Add a basic where clause to the query, and return the first result.

from  Builder
orWhere(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null)

Add an "or where" clause to the query.

from  Builder
whereNot(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null, string $boolean = 'and')

Add a basic "where not" clause to the query.

from  Builder
orWhereNot(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null)

Add an "or where not" clause to the query.

from  Builder
latest(Expression|string|null $column = null)

Add an "order by" clause for a timestamp to the query.

from  Builder
oldest(Expression|string|null $column = null)

Add an "order by" clause for a timestamp to the query.

from  Builder
hydrate(array $items)

Create a collection of models from plain arrays.

from  Builder
bool
fillAndInsert(array $values)

Insert into the database after merging the model's default attributes, setting timestamps, and casting values.

from  Builder
int
fillAndInsertOrIgnore(array $values)

Insert (ignoring errors) into the database after merging the model's default attributes, setting timestamps, and casting values.

from  Builder
int
fillAndInsertGetId(array $values)

Insert a record into the database and get its ID after merging the model's default attributes, setting timestamps, and casting values.

from  Builder
array
fillForInsert(array $values)

Enrich the given values by merging in the model's default attributes, adding timestamps, and casting values.

from  Builder
fromQuery(string $query, array $bindings = [])

Create a collection of models from a raw query.

from  Builder
find(mixed $id, array|string $columns = ['*'])

Find a model by its primary key.

from  Builder
findSole(mixed $id, array|string $columns = ['*'])

Find a sole model by its primary key.

from  Builder
findMany(Arrayable|array $ids, array|string $columns = ['*'])

Find multiple models by their primary keys.

from  Builder
findOrFail(mixed $id, array|string $columns = ['*'])

Find a model by its primary key or throw an exception.

from  Builder
findOrNew(mixed $id, array|string $columns = ['*'])

Find a model by its primary key or return fresh model instance.

from  Builder
mixed
findOr(mixed $id, Closure|array|string $columns = ['*'], Closure|null $callback = null)

Find a model by its primary key or call a callback.

from  Builder
firstOrNew(array $attributes = [], Closure|array $values = [])

Get the first record matching the attributes or instantiate it.

from  Builder
firstOrCreate(array $attributes = [], Closure|array $values = [])

Get the first record matching the attributes. If the record is not found, create it.

from  Builder
createOrFirst(array $attributes = [], Closure|array $values = [])

Attempt to create the record. If a unique constraint violation occurs, attempt to find the matching record.

from  Builder
updateOrCreate(array $attributes, Closure|array $values = [])

Create or update a record matching the attributes, and fill it with values.

from  Builder
incrementOrCreate(array $attributes, string $column = 'count', float|int $default = 1, float|int $step = 1, array $extra = [])

Create a record matching the attributes, or increment the existing record.

from  Builder
mixed
firstOr(Closure|array $columns = ['*'], Closure|null $callback = null)

Execute the query and get the first result or call a callback.

from  Builder
mixed
value(Expression|string $column)

Get a single column's value from the first result of a query.

from  Builder
mixed
soleValue(Expression|string $column)

Get a single column's value from the first result of a query if it's the sole matching record.

from  Builder
mixed
valueOrFail(Expression|string $column)

Get a single column's value from the first result of the query or throw an exception.

from  Builder
get(array|string $columns = ['*'])

Execute the query as a "select" statement.

from  Builder
array
getModels(array|string $columns = ['*'])

Get the hydrated models without eager loading.

from  Builder
array
eagerLoadRelations(array $models)

Eager load the relationships for the models.

from  Builder
array
eagerLoadRelation(array $models, string $name, Closure $constraints)

Eagerly load the relationship on a set of models.

from  Builder
getRelation(string $name)

Get the relation instance for the given relation name.

from  Builder
array
relationsNestedUnder(string $relation)

Get the deeply nested relations for a given top-level relation.

from  Builder
bool
isNestedUnder(string $relation, string $name)

Determine if the relationship is nested.

from  Builder
afterQuery(Closure $callback)

Register a closure to be invoked after the query is executed.

from  Builder
applyAfterQueryCallbacks(Collection $result)

Invoke the "after query" modification callbacks.

from  Builder
cursor()

Get a lazy collection for the given query.

from  Builder
void
enforceOrderBy()

Add a generic "order by" clause if the query doesn't already have one.

from  Builder
pluck(Expression|string $column, string|null $key = null)

Get a collection with the values of a given column.

from  Builder
paginate(Closure|int|null $perPage = null, array|string $columns = ['*'], string $pageName = 'page', int|null $page = null, Closure|int|null $total = null)

Paginate the given query.

from  Builder
simplePaginate(int|null $perPage = null, array|string $columns = ['*'], string $pageName = 'page', int|null $page = null)

Paginate the given query into a simple paginator.

from  Builder
cursorPaginate(int|null $perPage = null, array|string $columns = ['*'], string $cursorName = 'cursor', Cursor|string|null $cursor = null)

Paginate the given query into a cursor paginator.

from  Builder
ensureOrderForCursorPagination(bool $shouldReverse = false)

Ensure the proper order by required for cursor pagination.

from  Builder
create(array $attributes = [])

Save a new model and return the instance.

from  Builder
createQuietly(array $attributes = [])

Save a new model and return the instance without raising model events.

from  Builder
forceCreate(array $attributes)

Save a new model and return the instance. Allow mass-assignment.

from  Builder
forceCreateQuietly(array $attributes = [])

Save a new model instance with mass assignment without raising model events.

from  Builder
int
update(array $values)

Update records in the database.

from  Builder
int
upsert(array $values, array|string $uniqueBy, array|null $update = null)

Insert new records or update the existing ones.

from  Builder
false|int
touch(array|string|null $column = null)

Update the column's update timestamp.

from  Builder
int
increment(Expression|string $column, mixed $amount = 1, array $extra = [])

Increment a column's value by a given amount.

from  Builder
int
decrement(Expression|string $column, mixed $amount = 1, array $extra = [])

Decrement a column's value by a given amount.

from  Builder
int
incrementEach(array $columns, array $extra = [])

Increment the given column's values by the given amounts.

from  Builder
int
decrementEach(array $columns, array $extra = [])

Decrement the given column's values by the given amounts.

from  Builder
array
addUpdatedAtColumn(array $values)

Add the "updated at" column to an array of values.

from  Builder
array
addUniqueIdsToUpsertValues(array $values)

Add unique IDs to the inserted values.

from  Builder
array
addTimestampsToUpsertValues(array $values)

Add timestamps to the inserted values.

from  Builder
array
addUpdatedAtToUpsertColumns(array $update)

Add the "updated at" column to the updated columns.

from  Builder
mixed
delete()

Delete records from the database.

from  Builder
mixed
forceDelete()

Run the default delete function on the builder.

from  Builder
void
onDelete(Closure $callback)

Register a replacement for the default delete function.

from  Builder
bool
hasNamedScope(string $scope)

Determine if the given model has a scope.

from  Builder
mixed
scopes(array|string $scopes)

Call the given local model scopes.

from  Builder
applyScopes()

Apply the scopes to the Eloquent builder instance and return it.

from  Builder
mixed
callScope(callable $scope, array $parameters = [])

Apply the given scope on the current builder instance.

from  Builder
mixed
callNamedScope(string $scope, array $parameters = [])

Apply the given named scope on the current builder instance.

from  Builder
void
addNewWheresWithinGroup(Builder $query, int $originalWhereCount)

Nest where conditions by slicing them at the given where count.

from  Builder
void
groupWhereSliceForScope(Builder $query, array $whereSlice)

Slice where conditions at the given offset and add them to the query as a nested condition.

from  Builder
array
createNestedWhere(array $whereSlice, string $boolean = 'and')

Create a where array with nested where conditions.

from  Builder
with(array|string $relations, Closure|string|null $callback = null)

Specify relationships that should be eager loaded.

from  Builder
without(mixed $relations)

Prevent the specified relations from being eager loaded.

from  Builder
withOnly(array|string $relations)

Set the relationships that should be eager loaded while removing any previously added eager loading specifications.

from  Builder
newModelInstance(array $attributes = [])

Create a new instance of the model being queried.

from  Builder
array
parseWithRelations(array $relations)

Parse a list of relations into individuals.

from  Builder
array
prepareNestedWithRelationships(array $relations, string $prefix = '')

Prepare nested with relationships.

from  Builder
combineConstraints(array $constraints)

Combine an array of constraints into a single constraint.

from  Builder
array
parseNameAndAttributeSelectionConstraint(string $name)

Parse the attribute select constraints from the name.

from  Builder
array
createSelectWithConstraint(string $name)

Create a constraint to select the given columns for the relation.

from  Builder
array
addNestedWiths(string $name, array $results)

Parse the nested relationships in a relation.

from  Builder
withAttributes(Expression|array|string $attributes, mixed $value = null, bool $asConditions = true)

Specify attributes that should be added to any new models created by this builder.

from  Builder
withCasts(array $casts)

Apply query-time casts to the model instance.

from  Builder
mixed
withSavepointIfNeeded(Closure $scope)

Execute the given Closure within a transaction savepoint if needed.

from  Builder
getUnionBuilders()

Get the Eloquent builder instances that are used in the union of the query.

from  Builder
getQuery()

Get the underlying query builder instance.

from  Builder
setQuery(Builder $query)

Set the underlying query builder instance.

from  Builder
toBase()

Get a base query builder instance.

from  Builder
array
getEagerLoads()

Get the relationships being eagerly loaded.

from  Builder
setEagerLoads(array $eagerLoad)

Set the relationships being eagerly loaded.

from  Builder
withoutEagerLoad(array $relations)

Indicate that the given relationships should not be eagerly loaded.

from  Builder
withoutEagerLoads()

Flush the relationships being eagerly loaded.

from  Builder
int|null
getLimit()

Get the "limit" value from the query or null if it's not set.

from  Builder
int|null
getOffset()

Get the "offset" value from the query or null if it's not set.

from  Builder
string
defaultKeyName()

Get the default key name of the table.

from  Builder
getModel()

Get the model instance being queried.

from  Builder
setModel(Model $model)

Set a model instance for the model being queried.

from  Builder
string
qualifyColumn(Expression|string $column)

Qualify the given column name by the model's table.

from  Builder
array
qualifyColumns(Expression|array $columns)

Qualify the given columns with the model's table.

from  Builder
Closure|null
getMacro(string $name)

Get the given macro by name.

from  Builder
bool
hasMacro(string $name)

Checks if a macro is registered.

from  Builder
static Closure|null
getGlobalMacro(string $name)

Get the given global macro by name.

from  Builder
static bool
hasGlobalMacro(string $name)

Checks if a global macro is registered.

from  Builder
static void
flushState()

Flush all static state.

from  Builder
mixed
__get(string $key)

Dynamically access builder proxies.

from  Builder
mixed
__call(string $method, array $parameters)

Dynamically handle calls into the query instance.

from  Builder
static mixed
__callStatic(string $method, array $parameters)

Dynamically handle calls into the query instance.

from  Builder
static void
registerMixin(object $mixin, bool $replace)

Register the given mixin with the builder.

from  Builder
clone()

Clone the Eloquent query builder.

from  Builder
onClone(Closure $callback)

Register a closure to be invoked on a clone.

from  Builder
void
__clone()

Force a clone of the underlying query builder when cloning.

from  Builder
array
getNodeData(mixed $id, bool $required = false)

Get node's lft and rgt values.

array
getPlainNodeData(mixed $id, bool $required = false)

Get plain node data.

whereIsRoot()

Scope limits query to select just root node.

whereAncestorOf(mixed $id, bool $andSelf = false, string $boolean = 'and')

Limit results to ancestors of specified node.

orWhereAncestorOf(mixed $id, bool $andSelf = false)

No description

whereAncestorOrSelf(mixed $id)

No description

ancestorsOf(mixed $id, array $columns = ['*'])

Get ancestors of specified node.

ancestorsAndSelf(mixed $id, array $columns = ['*'])

No description

whereNodeBetween(array $values, string $boolean = 'and', bool $not = false, Builder|null $query = null)

Add node selection statement between specified range.

orWhereNodeBetween(array $values)

Add node selection statement between specified range joined with or operator.

whereDescendantOf(mixed $id, string $boolean = 'and', bool $not = false, bool $andSelf = false)

Add constraint statement to descendants of specified node.

whereNotDescendantOf(mixed $id)

No description

orWhereDescendantOf(mixed $id)

No description

orWhereNotDescendantOf(mixed $id)

No description

whereDescendantOrSelf(mixed $id, string $boolean = 'and', bool $not = false)

No description

descendantsOf(mixed $id, array $columns = ['*'], bool $andSelf = false)

Get descendants of specified node.

descendantsAndSelf(mixed $id, array $columns = ['*'])

No description

whereIsBeforeOrAfter(mixed $id, string $operator, string $boolean)

No description

whereIsAfter(mixed $id, string $boolean = 'and')

Constraint nodes to those that are after specified node.

whereIsBefore(mixed $id, string $boolean = 'and')

Constraint nodes to those that are before specified node.

whereIsLeaf()

No description

leaves(array $columns = ['*'])

No description

withDepth(string $as = 'depth')

Include depth level into the result.

array
wrappedColumns()

Get wrapped lft and rgt column names.

string
wrappedTable()

Get a wrapped table name.

string
wrappedKey()

Wrap model's key name.

withoutRoot()

Exclude root node from the result.

hasParent()

Equivalent of withoutRoot.

hasChildren()

Get only nodes that have children.

defaultOrder(string $dir = 'asc')

Order by node position.

reversed()

Order by reversed node position.

int
moveNode(mixed $key, int $position)

Move a node to the new position.

int
makeGap(int $cut, int $height)

Make or remove gap in the tree. Negative height will remove gap.

array
patch(array $params)

Get patch for columns.

columnPatch(string $col, array $params)

Get patch for single column.

array
countErrors()

Get statistics of errors of the tree.

getOdnessQuery()

No description

getDuplicatesQuery()

No description

getWrongParentQuery()

No description

getMissingParentQuery()

No description

int
getTotalErrors()

Get the number of total errors of the tree.

bool
isBroken()

Get whether the tree is broken.

int
fixTree(Model|null $root = null)

Fixes the tree based on parentage info.

int
fixSubtree(Model $root)

No description

int
fixNodes(array $dictionary, Model|null $parent = null)

No description

static int
reorderNodes(array $dictionary, array $updated, mixed $parentId = null, int $cut = 1)

No description

int
rebuildTree(array $data, bool $delete = false, int|Model|null $root = null)

Rebuild the tree based on raw data.

int
rebuildSubtree(mixed $root, array $data, bool $delete = false)

No description

void
buildRebuildDictionary(array $dictionary, array $data, array $existing, mixed $parentId = null)

No description

applyNestedSetScope(string|null $table = null)

No description

Model|null
root(array $columns = ['*'])

Get the root node.

Details

in Conditionable at line 23
mixed when(mixed $value = null, callable|null $callback = null, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) truthy.

Parameters

mixed $value
callable|null $callback
callable|null $default

Return Value

mixed

in Conditionable at line 56
mixed unless(mixed $value = null, callable|null $callback = null, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) falsy.

Parameters

mixed $value
callable|null $callback
callable|null $default

Return Value

mixed

in BuildsQueries at line 39
bool chunk(int $count, callable $callback)

Chunk the results of the query.

Parameters

int $count
callable $callback

Return Value

bool

in BuildsQueries at line 90
Collection chunkMap(callable $callback, int $count = 1000)

Run a map over each item while chunking.

Parameters

callable $callback
int $count

Return Value

Collection

in BuildsQueries at line 108
bool each(callable $callback, int $count = 1000)

Execute a callback over each item while chunking.

Parameters

callable $callback
int $count

Return Value

bool

in BuildsQueries at line 124
bool chunkById(int $count, callable $callback, string|null $column = null, string|null $alias = null)

Chunk the results of a query by comparing IDs.

Parameters

int $count
callable $callback
string|null $column
string|null $alias

Return Value

bool

in BuildsQueries at line 134
bool chunkByIdDesc(int $count, callable $callback, string|null $column = null, string|null $alias = null)

Chunk the results of a query by comparing IDs in descending order.

Parameters

int $count
callable $callback
string|null $column
string|null $alias

Return Value

bool

in BuildsQueries at line 144
bool orderedChunkById(int $count, callable $callback, string|null $column = null, string|null $alias = null, SortDirection|bool $descending = false)

Chunk the results of a query by comparing IDs in a given order.

Parameters

int $count
callable $callback
string|null $column
string|null $alias
SortDirection|bool $descending

Return Value

bool

in BuildsQueries at line 212
bool eachById(callable $callback, int $count = 1000, string|null $column = null, string|null $alias = null)

Execute a callback over each item while chunking by ID.

Parameters

callable $callback
int $count
string|null $column
string|null $alias

Return Value

bool

in BuildsQueries at line 228
LazyCollection lazy(int $chunkSize = 1000)

Query lazily, by chunks of the given size.

Parameters

int $chunkSize

Return Value

LazyCollection

in BuildsQueries at line 258
LazyCollection lazyById(int $chunkSize = 1000, string|null $column = null, string|null $alias = null)

Query lazily, by chunking the results of a query by comparing IDs.

Parameters

int $chunkSize
string|null $column
string|null $alias

Return Value

LazyCollection

in BuildsQueries at line 268
LazyCollection lazyByIdDesc(int $chunkSize = 1000, string|null $column = null, string|null $alias = null)

Query lazily, by chunking the results of a query by comparing IDs in descending order.

Parameters

int $chunkSize
string|null $column
string|null $alias

Return Value

LazyCollection

in BuildsQueries at line 278
protected LazyCollection orderedLazyById(int $chunkSize = 1000, string|null $column = null, string|null $alias = null, SortDirection|bool $descending = false)

Query lazily, by chunking the results of a query by comparing IDs in a given order.

Parameters

int $chunkSize
string|null $column
string|null $alias
SortDirection|bool $descending

Return Value

LazyCollection

in BuildsQueries at line 321
null|TValue first(array|string $columns = ['*'])

Execute the query and get the first result.

Parameters

array|string $columns

Return Value

null|TValue

in BuildsQueries at line 334
TValue firstOrFail(array|string $columns = ['*'], string|null $message = null)

Execute the query and get the first result or throw an exception.

Parameters

array|string $columns
string|null $message

Return Value

TValue

Exceptions

RecordNotFoundException

in BuildsQueries at line 351
TValue sole(array|string $columns = ['*'])

Execute the query and get the first result if it's the sole matching record.

Parameters

array|string $columns

Return Value

TValue

Exceptions

RecordsNotFoundException
MultipleRecordsFoundException

in BuildsQueries at line 374
protected CursorPaginator paginateUsingCursor(int $perPage, array|string $columns = ['*'], string $cursorName = 'cursor', Cursor|string|null $cursor = null)

Paginate the given query using a cursor paginator.

Parameters

int $perPage
array|string $columns
string $cursorName
Cursor|string|null $cursor

Return Value

CursorPaginator

in BuildsQueries at line 469
protected string getOriginalColumnNameForCursorPagination(Builder|Builder $builder, string $parameter)

Get the original column name of the given column, without any aliasing.

Parameters

Builder|Builder $builder
string $parameter

Return Value

string

in BuildsQueries at line 491
protected LengthAwarePaginator paginator(Collection $items, int $total, int $perPage, int $currentPage, array $options)

Create a new length-aware paginator instance.

Parameters

Collection $items
int $total
int $perPage
int $currentPage
array $options

Return Value

LengthAwarePaginator

in BuildsQueries at line 505
protected Paginator simplePaginator(Collection $items, int $perPage, int $currentPage, array $options)

Create a new simple paginator instance.

Parameters

Collection $items
int $perPage
int $currentPage
array $options

Return Value

Paginator

in BuildsQueries at line 518
protected CursorPaginator cursorPaginator(Collection $items, int $perPage, Cursor|null $cursor, array $options)

Create a new cursor paginator instance.

Parameters

Collection $items
int $perPage
Cursor|null $cursor
array $options

Return Value

CursorPaginator

in BuildsQueries at line 534
BuildsQueries tap(callable $callback)

Pass the query to a given callback and then return it.

Parameters

callable $callback

Return Value

BuildsQueries

in BuildsQueries at line 549
TReturn is null|TReturn) pipe(callable $callback)

Pass the query to a given callback and return the result.

Parameters

callable $callback

Return Value

TReturn is null|TReturn)

in ForwardsCalls at line 22
protected mixed forwardCallTo(mixed $object, string $method, array $parameters)

Forward a method call to the given object.

Parameters

mixed $object
string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

in ForwardsCalls at line 52
protected mixed forwardDecoratedCallTo(mixed $object, string $method, array $parameters)

Forward a method call to the given object, returning $this if the forwarded call returned itself.

Parameters

mixed $object
string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

in ForwardsCalls at line 66
static protected never throwBadMethodCallException(string $method)

Throw a bad method call exception for the given method.

Parameters

string $method

Return Value

never

Exceptions

BadMethodCallException

QueriesRelationships has(Relation|string $relation, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and', Closure|null $callback = null)

Add a relationship count / exists condition to the query.

Parameters

Relation|string $relation
string $operator
Expression|int $count
string $boolean
Closure|null $callback

Return Value

QueriesRelationships

Exceptions

RuntimeException

protected QueriesRelationships hasNested(string $relations, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and', Closure|null $callback = null)

Add nested relationship count / exists conditions to the query.

Sets up recursive call to whereHas until we finish the nested relation.

Parameters

string $relations
string $operator
Expression|int $count
string $boolean
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 127
QueriesRelationships orHas(Relation|string $relation, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with an "or".

Parameters

Relation|string $relation
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 140
QueriesRelationships doesntHave(Relation|string $relation, string $boolean = 'and', Closure|null $callback = null)

Add a relationship count / exists condition to the query.

Parameters

Relation|string $relation
string $boolean
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 150
QueriesRelationships orDoesntHave(Relation|string $relation)

Add a relationship count / exists condition to the query with an "or".

Parameters

Relation|string $relation

Return Value

QueriesRelationships

in QueriesRelationships at line 163
QueriesRelationships whereHas(Relation|string $relation, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with where clauses.

Parameters

Relation|string $relation
Closure|null $callback
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 175
QueriesRelationships withWhereHas(string $relation, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with where clauses.

Also load the relationship with the same condition.

Parameters

string $relation
Closure|null $callback
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 189
QueriesRelationships orWhereHas(Relation|string $relation, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a relationship count / exists condition to the query with where clauses and an "or".

Parameters

Relation|string $relation
Closure|null $callback
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 202
QueriesRelationships whereDoesntHave(Relation|string $relation, Closure|null $callback = null)

Add a relationship count / exists condition to the query with where clauses.

Parameters

Relation|string $relation
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 215
QueriesRelationships orWhereDoesntHave(Relation|string $relation, Closure|null $callback = null)

Add a relationship count / exists condition to the query with where clauses and an "or".

Parameters

Relation|string $relation
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 229
QueriesRelationships hasMorph(MorphTo|string $relation, string|array $types, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and', Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query.

Parameters

MorphTo|string $relation
string|array $types
string $operator
Expression|int $count
string $boolean
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 290
protected BelongsTo getBelongsToRelation(MorphTo $relation, string $type)

Get the BelongsTo relationship for a single polymorphic type.

Parameters

MorphTo $relation
string $type

Return Value

BelongsTo

in QueriesRelationships at line 312
QueriesRelationships orHasMorph(MorphTo|string $relation, string|array $types, string $operator = '>=', Expression|int $count = 1)

Add a polymorphic relationship count / exists condition to the query with an "or".

Parameters

MorphTo|string $relation
string|array $types
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 326
QueriesRelationships doesntHaveMorph(MorphTo|string $relation, string|array $types, string $boolean = 'and', Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query.

Parameters

MorphTo|string $relation
string|array $types
string $boolean
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 337
QueriesRelationships orDoesntHaveMorph(MorphTo|string $relation, string|array $types)

Add a polymorphic relationship count / exists condition to the query with an "or".

Parameters

MorphTo|string $relation
string|array $types

Return Value

QueriesRelationships

in QueriesRelationships at line 351
QueriesRelationships whereHasMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a polymorphic relationship count / exists condition to the query with where clauses.

Parameters

MorphTo|string $relation
string|array $types
Closure|null $callback
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 365
QueriesRelationships orWhereHasMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null, string $operator = '>=', Expression|int $count = 1)

Add a polymorphic relationship count / exists condition to the query with where clauses and an "or".

Parameters

MorphTo|string $relation
string|array $types
Closure|null $callback
string $operator
Expression|int $count

Return Value

QueriesRelationships

in QueriesRelationships at line 379
QueriesRelationships whereDoesntHaveMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query with where clauses.

Parameters

MorphTo|string $relation
string|array $types
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 393
QueriesRelationships orWhereDoesntHaveMorph(MorphTo|string $relation, string|array $types, Closure|null $callback = null)

Add a polymorphic relationship count / exists condition to the query with where clauses and an "or".

Parameters

MorphTo|string $relation
string|array $types
Closure|null $callback

Return Value

QueriesRelationships

in QueriesRelationships at line 406
QueriesRelationships whereRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a basic where clause to a relationship query.

Parameters

Relation|string $relation
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 422
QueriesRelationships withWhereRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a basic where clause to a relationship query and eager-load the relationship with the same conditions.

Parameters

Relation|string $relation
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 440
QueriesRelationships orWhereRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add an "or where" clause to a relationship query.

Parameters

Relation|string $relation
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 459
QueriesRelationships whereDoesntHaveRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a basic count / exists condition to a relationship query.

Parameters

Relation|string $relation
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 478
QueriesRelationships orWhereDoesntHaveRelation(Relation|string $relation, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add an "or where" clause to a relationship query.

Parameters

Relation|string $relation
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 498
QueriesRelationships whereMorphRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with a where clause.

Parameters

MorphTo|string $relation
string|array $types
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 514
QueriesRelationships orWhereMorphRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with an "or where" clause.

Parameters

MorphTo|string $relation
string|array $types
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 530
QueriesRelationships whereMorphDoesntHaveRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with a doesn't have clause.

Parameters

MorphTo|string $relation
string|array $types
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 546
QueriesRelationships orWhereMorphDoesntHaveRelation(MorphTo|string $relation, string|array $types, Closure|string|array|Expression $column, mixed $operator = null, mixed $value = null)

Add a polymorphic relationship condition to the query with an "or doesn't have" clause.

Parameters

MorphTo|string $relation
string|array $types
Closure|string|array|Expression $column
mixed $operator
mixed $value

Return Value

QueriesRelationships

in QueriesRelationships at line 559
QueriesRelationships whereMorphedTo(MorphTo|string $relation, mixed $model, string $boolean = 'and')

Add a morph-to relationship condition to the query.

Parameters

MorphTo|string $relation
mixed $model
string $boolean

Return Value

QueriesRelationships

in QueriesRelationships at line 605
QueriesRelationships whereNotMorphedTo(MorphTo|string $relation, mixed $model, string $boolean = 'and')

Add a not morph-to relationship condition to the query.

Parameters

MorphTo|string $relation
mixed $model
string $boolean

Return Value

QueriesRelationships

in QueriesRelationships at line 649
QueriesRelationships orWhereMorphedTo(MorphTo|string $relation, mixed $model)

Add a morph-to relationship condition to the query with an "or where" clause.

Parameters

MorphTo|string $relation
mixed $model

Return Value

QueriesRelationships

in QueriesRelationships at line 660
QueriesRelationships orWhereNotMorphedTo(MorphTo|string $relation, mixed $model)

Add a not morph-to relationship condition to the query with an "or where" clause.

Parameters

MorphTo|string $relation
mixed $model

Return Value

QueriesRelationships

in QueriesRelationships at line 672
QueriesRelationships whereBelongsTo(mixed $related, string|null $relationshipName = null, string $boolean = 'and')

Add a "belongs to" relationship where clause to the query.

Parameters

mixed $related
string|null $relationshipName
string $boolean

Return Value

QueriesRelationships

Exceptions

RelationNotFoundException

in QueriesRelationships at line 714
QueriesRelationships orWhereBelongsTo(mixed $related, string|null $relationshipName = null)

Add a "BelongsTo" relationship with an "or where" clause to the query.

Parameters

mixed $related
string|null $relationshipName

Return Value

QueriesRelationships

Exceptions

RuntimeException

in QueriesRelationships at line 726
QueriesRelationships whereAttachedTo(mixed $related, string|null $relationshipName = null, string $boolean = 'and')

Add a "belongs to many" relationship where clause to the query.

Parameters

mixed $related
string|null $relationshipName
string $boolean

Return Value

QueriesRelationships

Exceptions

RelationNotFoundException

in QueriesRelationships at line 764
QueriesRelationships orWhereAttachedTo(mixed $related, string|null $relationshipName = null)

Add a "belongs to many" relationship with an "or where" clause to the query.

Parameters

mixed $related
string|null $relationshipName

Return Value

QueriesRelationships

Exceptions

RuntimeException

in QueriesRelationships at line 772
QueriesRelationships withAggregate(mixed $relations, Expression|string $column, string|null $function = null)

Add subselect queries to include an aggregate value for a relationship.

Parameters

mixed $relations
Expression|string $column
string|null $function

Return Value

QueriesRelationships

in QueriesRelationships at line 873
protected string getRelationHashedColumn(string $column, Relation $relation)

Get the relation hashed column name for the given column and relation.

Parameters

string $column
Relation $relation

Return Value

string

in QueriesRelationships at line 887
QueriesRelationships withCount(mixed $relations)

Add subselect queries to count the relations.

Parameters

mixed $relations

Return Value

QueriesRelationships

in QueriesRelationships at line 895
QueriesRelationships withMax(string|array $relation, Expression|string $column)

Add subselect queries to include the max of the relation's column.

Parameters

string|array $relation
Expression|string $column

Return Value

QueriesRelationships

in QueriesRelationships at line 903
QueriesRelationships withMin(string|array $relation, Expression|string $column)

Add subselect queries to include the min of the relation's column.

Parameters

string|array $relation
Expression|string $column

Return Value

QueriesRelationships

in QueriesRelationships at line 911
QueriesRelationships withSum(string|array $relation, Expression|string $column)

Add subselect queries to include the sum of the relation's column.

Parameters

string|array $relation
Expression|string $column

Return Value

QueriesRelationships

in QueriesRelationships at line 919
QueriesRelationships withAvg(string|array $relation, Expression|string $column)

Add subselect queries to include the average of the relation's column.

Parameters

string|array $relation
Expression|string $column

Return Value

QueriesRelationships

in QueriesRelationships at line 927
QueriesRelationships withExists(string|array $relation)

Add subselect queries to include the existence of related models.

Parameters

string|array $relation

Return Value

QueriesRelationships

in QueriesRelationships at line 938
protected QueriesRelationships addHasWhere(Builder $hasQuery, Relation $relation, string $operator, Expression|int $count, string $boolean)

Add the "has" condition where clause to the query.

Parameters

Builder $hasQuery
Relation $relation
string $operator
Expression|int $count
string $boolean

Return Value

QueriesRelationships

in QueriesRelationships at line 952
QueriesRelationships mergeConstraintsFrom(Builder $from)

Merge the where constraints from another query to the current query.

Parameters

Builder $from

Return Value

QueriesRelationships

in QueriesRelationships at line 979
protected array requalifyWhereTables(array $wheres, string $from, string $to)

Updates the table name for any columns with a new qualified name.

Parameters

array $wheres
string $from
string $to

Return Value

array

in QueriesRelationships at line 993
protected QueriesRelationships addWhereCountQuery(Builder $query, string $operator = '>=', Expression|int $count = 1, string $boolean = 'and')

Add a sub-query count clause to this query.

Parameters

Builder $query
string $operator
Expression|int $count
string $boolean

Return Value

QueriesRelationships

in QueriesRelationships at line 1010
protected Relation getRelationWithoutConstraints(string $relation)

Get the "has relation" base query instance.

Parameters

string $relation

Return Value

Relation

in QueriesRelationships at line 1020
protected bool canUseExistsForExistenceCheck(string $operator, Expression|int $count)

Check if we can run an "exists" query to optimize performance.

Parameters

string $operator
Expression|int $count

Return Value

bool

in Builder at line 164
__construct(Builder $query)

Create a new Eloquent query builder instance.

Parameters

Builder $query

in Builder at line 174
Model make(array $attributes = [])

Create and return an un-saved model instance.

Parameters

array $attributes

Return Value

Model

in Builder at line 182
Builder withGlobalScope(string $identifier, Closure|Scope $scope)

Register a new global scope.

Parameters

string $identifier
Closure|Scope $scope

Return Value

Builder

in Builder at line 196
Builder withoutGlobalScope(Scope|string $scope)

Remove a registered global scope.

Parameters

Scope|string $scope

Return Value

Builder

in Builder at line 212
Builder withoutGlobalScopes(array|null $scopes = null)

Remove all or passed registered global scopes.

Parameters

array|null $scopes

Return Value

Builder

in Builder at line 228
Builder withoutGlobalScopesExcept(array $scopes = [])

Remove all global scopes except the given scopes.

Parameters

array $scopes

Return Value

Builder

in Builder at line 240
array removedScopes()

Get an array of global scopes that were removed from the query.

Return Value

array

in Builder at line 248
Builder whereKey(mixed $id)

Add a where clause on the primary key to the query.

Parameters

mixed $id

Return Value

Builder

in Builder at line 274
Builder whereKeyNot(mixed $id)

Add a where clause on the primary key to the query.

Parameters

mixed $id

Return Value

Builder

in Builder at line 300
Builder except(mixed $models)

Exclude the given models from the query results.

Parameters

mixed $models

Return Value

Builder

in Builder at line 314
Builder where(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null, string $boolean = 'and')

Add a basic where clause to the query.

Parameters

array|Closure|Expression|string $column
mixed $operator
mixed $value
string $boolean

Return Value

Builder

in Builder at line 339
Model|null firstWhere(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null, string $boolean = 'and')

Add a basic where clause to the query, and return the first result.

Parameters

array|Closure|Expression|string $column
mixed $operator
mixed $value
string $boolean

Return Value

Model|null

in Builder at line 349
Builder orWhere(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null)

Add an "or where" clause to the query.

Parameters

array|Closure|Expression|string $column
mixed $operator
mixed $value

Return Value

Builder

in Builder at line 365
Builder whereNot(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null, string $boolean = 'and')

Add a basic "where not" clause to the query.

Parameters

array|Closure|Expression|string $column
mixed $operator
mixed $value
string $boolean

Return Value

Builder

in Builder at line 375
Builder orWhereNot(array|Closure|Expression|string $column, mixed $operator = null, mixed $value = null)

Add an "or where not" clause to the query.

Parameters

array|Closure|Expression|string $column
mixed $operator
mixed $value

Return Value

Builder

in Builder at line 383
Builder latest(Expression|string|null $column = null)

Add an "order by" clause for a timestamp to the query.

Parameters

Expression|string|null $column

Return Value

Builder

in Builder at line 397
Builder oldest(Expression|string|null $column = null)

Add an "order by" clause for a timestamp to the query.

Parameters

Expression|string|null $column

Return Value

Builder

in Builder at line 413
Collection hydrate(array $items)

Create a collection of models from plain arrays.

Parameters

array $items

Return Value

Collection

in Builder at line 433
bool fillAndInsert(array $values)

Insert into the database after merging the model's default attributes, setting timestamps, and casting values.

Parameters

array $values

Return Value

bool

in Builder at line 443
int fillAndInsertOrIgnore(array $values)

Insert (ignoring errors) into the database after merging the model's default attributes, setting timestamps, and casting values.

Parameters

array $values

Return Value

int

in Builder at line 453
int fillAndInsertGetId(array $values)

Insert a record into the database and get its ID after merging the model's default attributes, setting timestamps, and casting values.

Parameters

array $values

Return Value

int

in Builder at line 464
array fillForInsert(array $values)

Enrich the given values by merging in the model's default attributes, adding timestamps, and casting values.

Parameters

array $values

Return Value

array

in Builder at line 491
Collection fromQuery(string $query, array $bindings = [])

Create a collection of models from a raw query.

Parameters

string $query
array $bindings

Return Value

Collection

in Builder at line 503
Model|Collection|null find(mixed $id, array|string $columns = ['*'])

Find a model by its primary key.

Parameters

mixed $id
array|string $columns

Return Value

Model|Collection|null

in Builder at line 520
Model findSole(mixed $id, array|string $columns = ['*'])

Find a sole model by its primary key.

Parameters

mixed $id
array|string $columns

Return Value

Model

Exceptions

TModel>
MultipleRecordsFoundException

in Builder at line 530
Collection findMany(Arrayable|array $ids, array|string $columns = ['*'])

Find multiple models by their primary keys.

Parameters

Arrayable|array $ids
array|string $columns

Return Value

Collection

in Builder at line 548
Model|Collection findOrFail(mixed $id, array|string $columns = ['*'])

Find a model by its primary key or throw an exception.

Parameters

mixed $id
array|string $columns

Return Value

Model|Collection

Exceptions

TModel>

in Builder at line 580
Model|Collection findOrNew(mixed $id, array|string $columns = ['*'])

Find a model by its primary key or return fresh model instance.

Parameters

mixed $id
array|string $columns

Return Value

Model|Collection

in Builder at line 602
mixed findOr(mixed $id, Closure|array|string $columns = ['*'], Closure|null $callback = null)

Find a model by its primary key or call a callback.

Parameters

mixed $id
Closure|array|string $columns
Closure|null $callback

Return Value

mixed

in Builder at line 622
Model firstOrNew(array $attributes = [], Closure|array $values = [])

Get the first record matching the attributes or instantiate it.

Parameters

array $attributes
Closure|array $values

Return Value

Model

in Builder at line 636
Model firstOrCreate(array $attributes = [], Closure|array $values = [])

Get the first record matching the attributes. If the record is not found, create it.

Parameters

array $attributes
Closure|array $values

Return Value

Model

in Builder at line 650
Model createOrFirst(array $attributes = [], Closure|array $values = [])

Attempt to create the record. If a unique constraint violation occurs, attempt to find the matching record.

Parameters

array $attributes
Closure|array $values

Return Value

Model

in Builder at line 665
Model updateOrCreate(array $attributes, Closure|array $values = [])

Create or update a record matching the attributes, and fill it with values.

Parameters

array $attributes
Closure|array $values

Return Value

Model

in Builder at line 679
Model incrementOrCreate(array $attributes, string $column = 'count', float|int $default = 1, float|int $step = 1, array $extra = [])

Create a record matching the attributes, or increment the existing record.

Parameters

array $attributes
string $column
float|int $default
float|int $step
array $extra

Return Value

Model

in Builder at line 713
mixed firstOr(Closure|array $columns = ['*'], Closure|null $callback = null)

Execute the query and get the first result or call a callback.

Parameters

Closure|array $columns
Closure|null $callback

Return Value

mixed

in Builder at line 748
mixed value(Expression|string $column)

Get a single column's value from the first result of a query.

Parameters

Expression|string $column

Return Value

mixed

in Builder at line 765
mixed soleValue(Expression|string $column)

Get a single column's value from the first result of a query if it's the sole matching record.

Parameters

Expression|string $column

Return Value

mixed

Exceptions

TModel>
MultipleRecordsFoundException

in Builder at line 777
mixed valueOrFail(Expression|string $column)

Get a single column's value from the first result of the query or throw an exception.

Parameters

Expression|string $column

Return Value

mixed

Exceptions

TModel>

in Builder at line 789
Collection get(array|string $columns = ['*'])

Execute the query as a "select" statement.

Parameters

array|string $columns

Return Value

Collection

in Builder at line 810
array getModels(array|string $columns = ['*'])

Get the hydrated models without eager loading.

Parameters

array|string $columns

Return Value

array

in Builder at line 823
array eagerLoadRelations(array $models)

Eager load the relationships for the models.

Parameters

array $models

Return Value

array

in Builder at line 840
protected array eagerLoadRelation(array $models, string $name, Closure $constraints)

Eagerly load the relationship on a set of models.

Parameters

array $models
string $name
Closure $constraints

Return Value

array

in Builder at line 866
Relation getRelation(string $name)

Get the relation instance for the given relation name.

Parameters

string $name

Return Value

Relation

in Builder at line 894
protected array relationsNestedUnder(string $relation)

Get the deeply nested relations for a given top-level relation.

Parameters

string $relation

Return Value

array

in Builder at line 913
protected bool isNestedUnder(string $relation, string $name)

Determine if the relationship is nested.

Parameters

string $relation
string $name

Return Value

bool

in Builder at line 921
Builder afterQuery(Closure $callback)

Register a closure to be invoked after the query is executed.

Parameters

Closure $callback

Return Value

Builder

in Builder at line 931
Collection applyAfterQueryCallbacks(Collection $result)

Invoke the "after query" modification callbacks.

Parameters

Collection $result

Return Value

Collection

in Builder at line 945
LazyCollection cursor()

Get a lazy collection for the given query.

Return Value

LazyCollection

in Builder at line 957
protected void enforceOrderBy()

Add a generic "order by" clause if the query doesn't already have one.

Return Value

void

in Builder at line 969
Collection pluck(Expression|string $column, string|null $key = null)

Get a collection with the values of a given column.

Parameters

Expression|string $column
string|null $key

Return Value

Collection

in Builder at line 998
LengthAwarePaginator paginate(Closure|int|null $perPage = null, array|string $columns = ['*'], string $pageName = 'page', int|null $page = null, Closure|int|null $total = null)

Paginate the given query.

Parameters

Closure|int|null $perPage
array|string $columns
string $pageName
int|null $page
Closure|int|null $total

Return Value

LengthAwarePaginator

Exceptions

InvalidArgumentException

in Builder at line 1019
Paginator simplePaginate(int|null $perPage = null, array|string $columns = ['*'], string $pageName = 'page', int|null $page = null)

Paginate the given query into a simple paginator.

Parameters

int|null $perPage
array|string $columns
string $pageName
int|null $page

Return Value

Paginator

in Builder at line 1039
CursorPaginator cursorPaginate(int|null $perPage = null, array|string $columns = ['*'], string $cursorName = 'cursor', Cursor|string|null $cursor = null)

Paginate the given query into a cursor paginator.

Parameters

int|null $perPage
array|string $columns
string $cursorName
Cursor|string|null $cursor

Return Value

CursorPaginator

in Builder at line 1049
protected Collection ensureOrderForCursorPagination(bool $shouldReverse = false)

Ensure the proper order by required for cursor pagination.

Parameters

bool $shouldReverse

Return Value

Collection

in Builder at line 1082
Model create(array $attributes = [])

Save a new model and return the instance.

Parameters

array $attributes

Return Value

Model

in Builder at line 1094
Model createQuietly(array $attributes = [])

Save a new model and return the instance without raising model events.

Parameters

array $attributes

Return Value

Model

in Builder at line 1104
Model forceCreate(array $attributes)

Save a new model and return the instance. Allow mass-assignment.

Parameters

array $attributes

Return Value

Model

in Builder at line 1116
Model forceCreateQuietly(array $attributes = [])

Save a new model instance with mass assignment without raising model events.

Parameters

array $attributes

Return Value

Model

in Builder at line 1124
int update(array $values)

Update records in the database.

Parameters

array $values

Return Value

int

in Builder at line 1132
int upsert(array $values, array|string $uniqueBy, array|null $update = null)

Insert new records or update the existing ones.

Parameters

array $values
array|string $uniqueBy
array|null $update

Return Value

int

in Builder at line 1156
false|int touch(array|string|null $column = null)

Update the column's update timestamp.

Parameters

array|string|null $column

Return Value

false|int

in Builder at line 1180
int increment(Expression|string $column, mixed $amount = 1, array $extra = [])

Increment a column's value by a given amount.

Parameters

Expression|string $column
mixed $amount
array $extra

Return Value

int

in Builder at line 1192
int decrement(Expression|string $column, mixed $amount = 1, array $extra = [])

Decrement a column's value by a given amount.

Parameters

Expression|string $column
mixed $amount
array $extra

Return Value

int

in Builder at line 1207
int incrementEach(array $columns, array $extra = [])

Increment the given column's values by the given amounts.

Parameters

array $columns
array $extra

Return Value

int

in Builder at line 1221
int decrementEach(array $columns, array $extra = [])

Decrement the given column's values by the given amounts.

Parameters

array $columns
array $extra

Return Value

int

in Builder at line 1232
protected array addUpdatedAtColumn(array $values)

Add the "updated at" column to an array of values.

Parameters

array $values

Return Value

array

in Builder at line 1271
protected array addUniqueIdsToUpsertValues(array $values)

Add unique IDs to the inserted values.

Parameters

array $values

Return Value

array

in Builder at line 1291
protected array addTimestampsToUpsertValues(array $values)

Add timestamps to the inserted values.

Parameters

array $values

Return Value

array

in Builder at line 1316
protected array addUpdatedAtToUpsertColumns(array $update)

Add the "updated at" column to the updated columns.

Parameters

array $update

Return Value

array

in Builder at line 1336
mixed delete()

Delete records from the database.

Return Value

mixed

in Builder at line 1350
mixed forceDelete()

Run the default delete function on the builder.

Since we do not apply scopes here, the row will actually be deleted.

Return Value

mixed

in Builder at line 1358
void onDelete(Closure $callback)

Register a replacement for the default delete function.

Parameters

Closure $callback

Return Value

void

in Builder at line 1366
bool hasNamedScope(string $scope)

Determine if the given model has a scope.

Parameters

string $scope

Return Value

bool

in Builder at line 1374
mixed scopes(array|string $scopes)

Call the given local model scopes.

Parameters

array|string $scopes

Return Value

mixed

in Builder at line 1401
Builder applyScopes()

Apply the scopes to the Eloquent builder instance and return it.

Return Value

Builder

in Builder at line 1437
protected mixed callScope(callable $scope, array $parameters = [])

Apply the given scope on the current builder instance.

Parameters

callable $scope
array $parameters

Return Value

mixed

in Builder at line 1460
protected mixed callNamedScope(string $scope, array $parameters = [])

Apply the given named scope on the current builder instance.

Parameters

string $scope
array $parameters

Return Value

mixed

in Builder at line 1470
protected void addNewWheresWithinGroup(Builder $query, int $originalWhereCount)

Nest where conditions by slicing them at the given where count.

Parameters

Builder $query
int $originalWhereCount

Return Value

void

in Builder at line 1493
protected void groupWhereSliceForScope(Builder $query, array $whereSlice)

Slice where conditions at the given offset and add them to the query as a nested condition.

Parameters

Builder $query
array $whereSlice

Return Value

void

in Builder at line 1515
protected array createNestedWhere(array $whereSlice, string $boolean = 'and')

Create a where array with nested where conditions.

Parameters

array $whereSlice
string $boolean

Return Value

array

in Builder at line 1530
Builder with(array|string $relations, Closure|string|null $callback = null)

Specify relationships that should be eager loaded.

Parameters

array|string $relations
Closure|string|null $callback

Return Value

Builder

in Builder at line 1546
Builder without(mixed $relations)

Prevent the specified relations from being eager loaded.

Parameters

mixed $relations

Return Value

Builder

in Builder at line 1560
Builder withOnly(array|string $relations)

Set the relationships that should be eager loaded while removing any previously added eager loading specifications.

Parameters

array|string $relations

Return Value

Builder

in Builder at line 1572
Model newModelInstance(array $attributes = [])

Create a new instance of the model being queried.

Parameters

array $attributes

Return Value

Model

in Builder at line 1584
protected array parseWithRelations(array $relations)

Parse a list of relations into individuals.

Parameters

array $relations

Return Value

array

in Builder at line 1607
protected array prepareNestedWithRelationships(array $relations, string $prefix = '')

Prepare nested with relationships.

Parameters

array $relations
string $prefix

Return Value

array

in Builder at line 1655
protected Closure combineConstraints(array $constraints)

Combine an array of constraints into a single constraint.

Parameters

array $constraints

Return Value

Closure

in Builder at line 1669
protected array parseNameAndAttributeSelectionConstraint(string $name)

Parse the attribute select constraints from the name.

Parameters

string $name

Return Value

array

in Builder at line 1680
protected array createSelectWithConstraint(string $name)

Create a constraint to select the given columns for the relation.

Parameters

string $name

Return Value

array

in Builder at line 1694
protected array addNestedWiths(string $name, array $results)

Parse the nested relationships in a relation.

Parameters

string $name
array $results

Return Value

array

in Builder at line 1718
Builder withAttributes(Expression|array|string $attributes, mixed $value = null, bool $asConditions = true)

Specify attributes that should be added to any new models created by this builder.

The given key / value pairs will also be added as where conditions to the query.

Parameters

Expression|array|string $attributes
mixed $value
bool $asConditions

Return Value

Builder

in Builder at line 1738
Builder withCasts(array $casts)

Apply query-time casts to the model instance.

Parameters

array $casts

Return Value

Builder

in Builder at line 1753
mixed withSavepointIfNeeded(Closure $scope)

Execute the given Closure within a transaction savepoint if needed.

Parameters

Closure $scope

Return Value

mixed

in Builder at line 1763
protected Collection getUnionBuilders()

Get the Eloquent builder instances that are used in the union of the query.

Return Value

Collection

in Builder at line 1773
Builder getQuery()

Get the underlying query builder instance.

Return Value

Builder

in Builder at line 1781
Builder setQuery(Builder $query)

Set the underlying query builder instance.

Parameters

Builder $query

Return Value

Builder

in Builder at line 1791
Builder toBase()

Get a base query builder instance.

Return Value

Builder

in Builder at line 1799
array getEagerLoads()

Get the relationships being eagerly loaded.

Return Value

array

in Builder at line 1807
Builder setEagerLoads(array $eagerLoad)

Set the relationships being eagerly loaded.

Parameters

array $eagerLoad

Return Value

Builder

in Builder at line 1817
Builder withoutEagerLoad(array $relations)

Indicate that the given relationships should not be eagerly loaded.

Parameters

array $relations

Return Value

Builder

in Builder at line 1827
Builder withoutEagerLoads()

Flush the relationships being eagerly loaded.

Return Value

Builder

in Builder at line 1835
int|null getLimit()

Get the "limit" value from the query or null if it's not set.

Return Value

int|null

in Builder at line 1843
int|null getOffset()

Get the "offset" value from the query or null if it's not set.

Return Value

int|null

in Builder at line 1851
protected string defaultKeyName()

Get the default key name of the table.

Return Value

string

in Builder at line 1861
Model getModel()

Get the model instance being queried.

Return Value

Model

in Builder at line 1874
Builder setModel(Model $model)

Set a model instance for the model being queried.

Parameters

Model $model

Return Value

Builder

in Builder at line 1887
string qualifyColumn(Expression|string $column)

Qualify the given column name by the model's table.

Parameters

Expression|string $column

Return Value

string

in Builder at line 1897
array qualifyColumns(Expression|array $columns)

Qualify the given columns with the model's table.

Parameters

Expression|array $columns

Return Value

array

in Builder at line 1905
Closure|null getMacro(string $name)

Get the given macro by name.

Parameters

string $name

Return Value

Closure|null

in Builder at line 1913
bool hasMacro(string $name)

Checks if a macro is registered.

Parameters

string $name

Return Value

bool

in Builder at line 1921
static Closure|null getGlobalMacro(string $name)

Get the given global macro by name.

Parameters

string $name

Return Value

Closure|null

in Builder at line 1929
static bool hasGlobalMacro(string $name)

Checks if a global macro is registered.

Parameters

string $name

Return Value

bool

in Builder at line 1937
static void flushState()

Flush all static state.

Return Value

void

in Builder at line 1947
mixed __get(string $key)

Dynamically access builder proxies.

Parameters

string $key

Return Value

mixed

Exceptions

Exception

in Builder at line 1963
mixed __call(string $method, array $parameters)

Dynamically handle calls into the query instance.

Parameters

string $method
array $parameters

Return Value

mixed

in Builder at line 2005
static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls into the query instance.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

in Builder at line 2037
static protected void registerMixin(object $mixin, bool $replace)

Register the given mixin with the builder.

Parameters

object $mixin
bool $replace

Return Value

void

Exceptions

ReflectionException

in Builder at line 2053
Builder clone()

Clone the Eloquent query builder.

Return Value

Builder

in Builder at line 2061
Builder onClone(Closure $callback)

Register a closure to be invoked on a clone.

Parameters

Closure $callback

Return Value

Builder

in Builder at line 2071
void __clone()

Force a clone of the underlying query builder when cloning.

Return Value

void

at line 22
array getNodeData(mixed $id, bool $required = false)

Get node's lft and rgt values.

Parameters

mixed $id
bool $required

Return Value

array

at line 41
array getPlainNodeData(mixed $id, bool $required = false)

Get plain node data.

Parameters

mixed $id
bool $required

Return Value

array

at line 49
QueryBuilder whereIsRoot()

Scope limits query to select just root node.

Return Value

QueryBuilder

at line 60
QueryBuilder whereAncestorOf(mixed $id, bool $andSelf = false, string $boolean = 'and')

Limit results to ancestors of specified node.

Parameters

mixed $id
bool $andSelf
string $boolean

Return Value

QueryBuilder

at line 105
QueryBuilder orWhereAncestorOf(mixed $id, bool $andSelf = false)

No description

Parameters

mixed $id
bool $andSelf

Return Value

QueryBuilder

at line 110
QueryBuilder whereAncestorOrSelf(mixed $id)

No description

Parameters

mixed $id

Return Value

QueryBuilder

at line 118
Collection ancestorsOf(mixed $id, array $columns = ['*'])

Get ancestors of specified node.

Parameters

mixed $id
array $columns

Return Value

Collection

at line 124
Collection ancestorsAndSelf(mixed $id, array $columns = ['*'])

No description

Parameters

mixed $id
array $columns

Return Value

Collection

at line 133
QueryBuilder whereNodeBetween(array $values, string $boolean = 'and', bool $not = false, Builder|null $query = null)

Add node selection statement between specified range.

Parameters

array $values
string $boolean
bool $not
Builder|null $query

Return Value

QueryBuilder

at line 144
QueryBuilder orWhereNodeBetween(array $values)

Add node selection statement between specified range joined with or operator.

Parameters

array $values

Return Value

QueryBuilder

at line 152
QueryBuilder whereDescendantOf(mixed $id, string $boolean = 'and', bool $not = false, bool $andSelf = false)

Add constraint statement to descendants of specified node.

Parameters

mixed $id
string $boolean
bool $not
bool $andSelf

Return Value

QueryBuilder

at line 177
QueryBuilder whereNotDescendantOf(mixed $id)

No description

Parameters

mixed $id

Return Value

QueryBuilder

at line 182
QueryBuilder orWhereDescendantOf(mixed $id)

No description

Parameters

mixed $id

Return Value

QueryBuilder

at line 187
QueryBuilder orWhereNotDescendantOf(mixed $id)

No description

Parameters

mixed $id

Return Value

QueryBuilder

at line 192
QueryBuilder whereDescendantOrSelf(mixed $id, string $boolean = 'and', bool $not = false)

No description

Parameters

mixed $id
string $boolean
bool $not

Return Value

QueryBuilder

at line 200
Collection descendantsOf(mixed $id, array $columns = ['*'], bool $andSelf = false)

Get descendants of specified node.

Parameters

mixed $id
array $columns
bool $andSelf

Return Value

Collection

at line 209
Collection descendantsAndSelf(mixed $id, array $columns = ['*'])

No description

Parameters

mixed $id
array $columns

Return Value

Collection

at line 214
protected QueryBuilder whereIsBeforeOrAfter(mixed $id, string $operator, string $boolean)

No description

Parameters

mixed $id
string $operator
string $boolean

Return Value

QueryBuilder

at line 243
QueryBuilder whereIsAfter(mixed $id, string $boolean = 'and')

Constraint nodes to those that are after specified node.

Parameters

mixed $id
string $boolean

Return Value

QueryBuilder

at line 251
QueryBuilder whereIsBefore(mixed $id, string $boolean = 'and')

Constraint nodes to those that are before specified node.

Parameters

mixed $id
string $boolean

Return Value

QueryBuilder

at line 256
Builder|QueryBuilder whereIsLeaf()

No description

Return Value

Builder|QueryBuilder

at line 263
Collection leaves(array $columns = ['*'])

No description

Parameters

array $columns

Return Value

Collection

at line 271
QueryBuilder withDepth(string $as = 'depth')

Include depth level into the result.

Parameters

string $as

Return Value

QueryBuilder

at line 299
protected array wrappedColumns()

Get wrapped lft and rgt column names.

Return Value

array

at line 312
protected string wrappedTable()

Get a wrapped table name.

Return Value

string

at line 320
protected string wrappedKey()

Wrap model's key name.

Return Value

string

at line 328
QueryBuilder withoutRoot()

Exclude root node from the result.

Return Value

QueryBuilder

at line 339
QueryBuilder hasParent()

Equivalent of withoutRoot.

Return Value

QueryBuilder

at line 350
QueryBuilder hasChildren()

Get only nodes that have children.

Return Value

QueryBuilder

at line 362
QueryBuilder defaultOrder(string $dir = 'asc')

Order by node position.

Parameters

string $dir

Return Value

QueryBuilder

at line 375
QueryBuilder reversed()

Order by reversed node position.

Return Value

QueryBuilder

at line 383
int moveNode(mixed $key, int $position)

Move a node to the new position.

Parameters

mixed $key
int $position

Return Value

int

at line 429
int makeGap(int $cut, int $height)

Make or remove gap in the tree. Negative height will remove gap.

Parameters

int $cut
int $height

Return Value

int

at line 444
protected array patch(array $params)

Get patch for columns.

Parameters

array $params

Return Value

array

at line 461
protected Expression columnPatch(string $col, array $params)

Get patch for single column.

Parameters

string $col
array $params

Return Value

Expression

at line 494
array countErrors()

Get statistics of errors of the tree.

Return Value

array

at line 521
protected Builder getOdnessQuery()

No description

Return Value

Builder

at line 534
protected Builder getDuplicatesQuery()

No description

Return Value

Builder

at line 563
protected Builder getWrongParentQuery()

No description

Return Value

Builder

at line 604
protected Builder getMissingParentQuery()

No description

Return Value

Builder

at line 638
int getTotalErrors()

Get the number of total errors of the tree.

Return Value

int

at line 646
bool isBroken()

Get whether the tree is broken.

Return Value

bool

at line 655
int fixTree(Model|null $root = null)

Fixes the tree based on parentage info.

Nodes with invalid parent are saved as roots.

Parameters

Model|null $root

Return Value

int

at line 677
int fixSubtree(Model $root)

No description

Parameters

Model $root

Return Value

int

at line 682
protected int fixNodes(array $dictionary, Model|null $parent = null)

No description

Parameters

array $dictionary
Model|null $parent

Return Value

int

at line 717
static protected int reorderNodes(array $dictionary, array $updated, mixed $parentId = null, int $cut = 1)

No description

Parameters

array $dictionary
array $updated
mixed $parentId
int $cut

Return Value

int

at line 750
int rebuildTree(array $data, bool $delete = false, int|Model|null $root = null)

Rebuild the tree based on raw data.

If item data does not contain primary key, new node will be created.

Parameters

array $data
bool $delete

whether to delete nodes that exists but not in the data array

int|Model|null $root

Return Value

int

at line 798
int rebuildSubtree(mixed $root, array $data, bool $delete = false)

No description

Parameters

mixed $root
array $data
bool $delete

Return Value

int

at line 803
protected void buildRebuildDictionary(array $dictionary, array $data, array $existing, mixed $parentId = null)

No description

Parameters

array $dictionary
array $data
array $existing
mixed $parentId

Return Value

void

at line 848
QueryBuilder applyNestedSetScope(string|null $table = null)

No description

Parameters

string|null $table

Return Value

QueryBuilder

at line 857
Model|null root(array $columns = ['*'])

Get the root node.

Parameters

array $columns

Return Value

Model|null