Methods |
public
|
__construct(
Builder<TRelatedModel> $query,
TDeclaringModel $child,
string $foreignKey,
string $ownerKey,
string $relationName,
): void
Create a new belongs to relationship instance.
Create a new belongs to relationship instance.
Overrides
Overriden by
|
#
|
public
|
getResults()
Get the results of the relationship.
Get the results of the relationship.
Implements
|
#
|
public
|
addConstraints(): void
Set the base constraints on the relation query.
Set the base constraints on the relation query.
Implements
|
#
|
public
|
addEagerConstraints(array $models)
Set the constraints for an eager load of the relation.
Set the constraints for an eager load of the relation.
Overriden by
Implements
|
#
|
protected
|
getEagerModelKeys(array<int, TDeclaringModel> $models): array
Gather the keys from an array of related models.
Gather the keys from an array of related models.
|
#
|
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.
Overriden by
Implements
|
#
|
public
|
associate(TRelatedModel|int|string|null $model): TDeclaringModel
Associate the model instance to the given parent.
Associate the model instance to the given parent.
Overriden by
|
#
|
public
|
dissociate(): TDeclaringModel
Dissociate previously associated model from the given parent.
Dissociate previously associated model from the given parent.
Overriden by
|
#
|
public
|
disassociate(): TDeclaringModel
Alias of "dissociate" method.
Alias of "dissociate" method.
|
#
|
public
|
touch(): void
Touch all of the related models for the relationship.
Touch all of the related models for the relationship.
Overrides
Overriden by
|
#
|
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
|
getRelationExistenceQueryForSelfRelation(
Builder<TRelatedModel> $query,
Builder<TDeclaringModel> $parentQuery,
array|mixed $columns = ['*'],
): Builder<TRelatedModel>
Add the constraints for a relationship query on the same table.
Add the constraints for a relationship query on the same table.
|
#
|
protected
|
relationHasIncrementingId(): bool
Determine if the related model has an auto-incrementing ID.
Determine if the related model has an auto-incrementing ID.
|
#
|
protected
|
newRelatedInstanceFor(TDeclaringModel $parent): TRelatedModel
Make a new related instance for the given model.
Make a new related instance for the given model.
Overriden by
|
#
|
public
|
getChild(): TDeclaringModel
Get the child of the relationship.
Get the child of the relationship.
|
#
|
public
|
getForeignKeyName(): string
Get the foreign key of the relationship.
Get the foreign key of the relationship.
|
#
|
public
|
getQualifiedForeignKeyName(): string
Get the fully qualified foreign key of the relationship.
Get the fully qualified foreign key of the relationship.
|
#
|
public
|
getParentKey(): mixed
Get the key value of the child's foreign key.
Get the key value of the child's foreign key.
|
#
|
public
|
getOwnerKeyName(): string
Get the associated key of the relationship.
Get the associated key of the relationship.
|
#
|
public
|
getQualifiedOwnerKeyName(): string
Get the fully qualified associated key of the relationship.
Get the fully qualified associated key of the relationship.
Overriden by
|
#
|
protected
|
getRelatedKeyFrom(TRelatedModel $model): int|string
Get the value of the model's foreign key.
Get the value of the model's foreign key.
|
#
|
protected
|
getForeignKeyFrom(TDeclaringModel $model): mixed
Get the value of the model's foreign key.
Get the value of the model's foreign key.
|
#
|
public
|
getRelationName(): string
Get the name of the relationship.
Get the name of the relationship.
|
#
|