Methods |
public
|
__construct(Builder<TRelatedModel> $query, TDeclaringModel $parent, string $type, string $id, string $localKey): void
Create a new morph one or many relationship instance.
Create a new morph one or many relationship instance.
Overrides
|
#
|
public
|
addConstraints(): void
Set the base constraints on the relation query.
Set the base constraints on the relation query.
Overrides
|
#
|
public
|
addEagerConstraints(array $models)
Set the constraints for an eager load of the relation.
Set the constraints for an eager load of the relation.
Overrides
|
#
|
public
|
forceCreate(array $attributes = []): TRelatedModel
Create a new instance of the related model. Allow mass-assignment.
Create a new instance of the related model. Allow mass-assignment.
Overrides
Overriden by
|
#
|
protected
|
setForeignAttributesForCreate(TRelatedModel $model): void
Set the foreign ID and type for creating a related model.
Set the foreign ID and type for creating a related model.
Overrides
|
#
|
public
|
upsert(array $values, array|string $uniqueBy, array|null $update = null): int
Insert new records or update the existing ones.
Insert new records or update the existing ones.
Overrides
|
#
|
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
Overriden by
|
#
|
public
|
getQualifiedMorphType(): string
Get the foreign key "type" name.
Get the foreign key "type" name.
|
#
|
public
|
getMorphType(): string
Get the plain morph type name without the table.
Get the plain morph type name without the table.
|
#
|
public
|
getMorphClass(): string
Get the class name of the parent model.
Get the class name of the parent model.
|
#
|
protected
|
getPossibleInverseRelations(): array<non-empty-string>
Get the possible inverse relations for the parent model.
Get the possible inverse relations for the parent model.
|
#
|