Methods |
public
|
inverse(string|null $relation = null): $this
Instruct Eloquent to link the related models back to the parent after the relationship query has run.
Instruct Eloquent to link the related models back to the parent after the relationship query has run.
Alias of "chaperone".
|
#
|
public
|
chaperone(string|null $relation = null): $this
Instruct Eloquent to link the related models back to the parent after the relationship query has run.
Instruct Eloquent to link the related models back to the parent after the relationship query has run.
|
#
|
protected
|
guessInverseRelation(): string|null
Guess the name of the inverse relationship.
Guess the name of the inverse relationship.
|
#
|
protected
|
getPossibleInverseRelations(): array<non-empty-string>
Get the possible inverse relations for the parent model.
Get the possible inverse relations for the parent model.
|
#
|
protected
|
applyInverseRelationToCollection(Collection $models, Model|null $parent = null): Collection
Set the inverse relation on all models in a collection.
Set the inverse relation on all models in a collection.
|
#
|
protected
|
applyInverseRelationToModel(Model $model, Model|null $parent = null): Model
Set the inverse relation on a model.
Set the inverse relation on a model.
|
#
|
public
|
getInverseRelationship(): string|null
Get the name of the inverse relationship.
Get the name of the inverse relationship.
|
#
|
public
|
withoutInverse(): $this
Remove the chaperone / inverse relationship for this query.
Remove the chaperone / inverse relationship for this query.
Alias of "withoutChaperone".
|
#
|
public
|
withoutChaperone(): $this
Remove the chaperone / inverse relationship for this query.
Remove the chaperone / inverse relationship for this query.
|
#
|