Methods |
public
|
__construct(
Builder<TRelatedModel> $query,
TDeclaringModel $parent,
string $name,
string $table,
string $foreignPivotKey,
string $relatedPivotKey,
string $parentKey,
string $relatedKey,
string|null $relationName = null,
bool $inverse = false,
): void
Create a new morph to many relationship instance.
Create a new morph to many relationship instance.
Overrides
|
#
|
protected
|
addWhereConstraints(): $this
Set the where clause for the relation query.
Set the where clause for 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
|
#
|
protected
|
baseAttachRecord(int $id, bool $timed): array
Create a new pivot attachment record.
Create a new pivot attachment record.
|
#
|
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
|
#
|
protected
|
getCurrentlyAttachedPivots(): Collection<int, Pivot|MorphPivot>
Get the pivot models that are currently attached.
Get the pivot models that are currently attached.
|
#
|
public
|
newPivotQuery(): Builder
Create a new query builder for the pivot table.
Create a new query builder for the pivot table.
|
#
|
public
|
newPivot(array $attributes = [], bool $exists = false): Pivot
Create a new pivot model instance.
Create a new pivot model instance.
|
#
|
protected
|
aliasedPivotColumns(): array
Get the pivot columns for the relation.
Get the pivot columns for the relation.
"pivot_" is prefixed at each column for easy removal later.
Overrides
|
#
|
public
|
getMorphType(): string
Get the foreign key "type" name.
Get the foreign key "type" name.
|
#
|
public
|
getQualifiedMorphTypeName(): string
Get the fully qualified morph type for the relation.
Get the fully qualified morph type for the relation.
|
#
|
public
|
getMorphClass(): string
Get the class name of the parent model.
Get the class name of the parent model.
|
#
|
public
|
getInverse(): bool
Get the indicator for a reverse relationship.
Get the indicator for a reverse relationship.
|
#
|