Methods |
public
|
getResults()
Get the results of the relationship.
Get the results of the relationship.
Implements
|
#
|
public
|
initRelation(array $models, $relation)
Initialize the relation on a set of models.
Initialize the relation on a set of models.
Implements
|
#
|
public
|
match(array $models, Collection $results, $relation)
Match the eagerly loaded results to their parents.
Match the eagerly loaded results to their parents.
Implements
|
#
|
public
|
getRelationExistenceQuery(Builder $query, Builder $parentQuery, $columns = ['*'])
Add the constraints for an internal relationship existence query.
Add the constraints for an internal relationship existence query.
Essentially, these queries compare on column names like whereColumn.
Overrides
|
#
|
public
|
addOneOfManySubQueryConstraints(
Builder<TRelatedModel> $query,
string|null $column = null,
string|null $aggregate = null,
): void
Add constraints for inner join subselect for one of many relationships.
Add constraints for inner join subselect for one of many relationships.
|
#
|
public
|
getOneOfManySubQuerySelectColumns(): array|string
Get the columns that should be selected by the one of many subquery.
Get the columns that should be selected by the one of many subquery.
|
#
|
public
|
addOneOfManyJoinSubQueryConstraints(JoinClause $join): void
Add join query constraints for one of many relationships.
Add join query constraints for one of many relationships.
|
#
|
public
|
newRelatedInstanceFor(TDeclaringModel $parent): TRelatedModel
Make a new related instance for the given model.
Make a new related instance for the given model.
|
#
|
protected
|
getRelatedKeyFrom(TRelatedModel $model): int|string
Get the value of the model's foreign key.
Get the value of the model's foreign key.
|
#
|