Methods |
public
|
__construct(Builder<TRelatedModel> $query, TDeclaringModel $parent, string $foreignKey, string $localKey): void
Create a new has one or many relationship instance.
Create a new has one or many relationship instance.
Overrides
Overriden by
|
#
|
public
|
make(array $attributes = []): TRelatedModel
Create and return an un-saved instance of the related model.
Create and return an un-saved instance of the related model.
|
#
|
public
|
makeMany(iterable $records): Collection<int, TRelatedModel>
Create and return an un-saved instance of the related models.
Create and return an un-saved instance of the related models.
|
#
|
public
|
addConstraints(): void
Set the base constraints on the relation query.
Set the base constraints on the relation query.
Overriden by
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
|
#
|
public
|
matchOne(
array<int, TDeclaringModel> $models,
Collection<int, TRelatedModel> $results,
string $relation,
): array<int, TDeclaringModel>
Match the eagerly loaded results to their single parents.
Match the eagerly loaded results to their single parents.
|
#
|
public
|
matchMany(
array<int, TDeclaringModel> $models,
Collection<int, TRelatedModel> $results,
string $relation,
): array<int, TDeclaringModel>
Match the eagerly loaded results to their many parents.
Match the eagerly loaded results to their many parents.
|
#
|
protected
|
matchOneOrMany(
array<int, TDeclaringModel> $models,
Collection<int, TRelatedModel> $results,
string $relation,
string $type,
): array<int, TDeclaringModel>
Match the eagerly loaded results to their many parents.
Match the eagerly loaded results to their many parents.
|
#
|
protected
|
getRelationValue(array $dictionary, string $key, string $type): mixed
Get the value of a relationship by one or many type.
Get the value of a relationship by one or many type.
|
#
|
protected
|
buildDictionary(Collection<int, TRelatedModel> $results): array<array<int, TRelatedModel>>
Build model dictionary keyed by the relation's foreign key.
Build model dictionary keyed by the relation's foreign key.
|
#
|
public
|
findOrNew(
mixed $id,
array $columns = ['*'],
): ($id is Arrayable<array-key, mixed>|array<mixed> ? Collection<int, TRelatedModel> : TRelatedModel)
Find a model by its primary key or return a new instance of the related model.
Find a model by its primary key or return a new instance of the related model.
|
#
|
public
|
firstOrNew(array $attributes = [], array $values = []): TRelatedModel
Get the first related model record matching the attributes or instantiate it.
Get the first related model record matching the attributes or instantiate it.
|
#
|
public
|
firstOrCreate(array $attributes = [], array $values = []): TRelatedModel
Get the first record matching the attributes. If the record is not found, create it.
Get the first record matching the attributes. If the record is not found, create it.
|
#
|
public
|
createOrFirst(array $attributes = [], array $values = []): TRelatedModel
Attempt to create the record. If a unique constraint violation occurs, attempt to find the matching record.
Attempt to create the record. If a unique constraint violation occurs, attempt to find the matching record.
|
#
|
public
|
updateOrCreate(array $attributes, array $values = []): TRelatedModel
Create or update a related record matching the attributes, and fill it with values.
Create or update a related record matching the attributes, and fill it with values.
|
#
|
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.
Overriden by
|
#
|
public
|
save(TRelatedModel $model): TRelatedModel|false
Attach a model instance to the parent model.
Attach a model instance to the parent model.
|
#
|
public
|
saveQuietly(TRelatedModel $model): TRelatedModel|false
Attach a model instance without raising any events to the parent model.
Attach a model instance without raising any events to the parent model.
|
#
|
public
|
saveMany(iterable<TRelatedModel> $models): iterable<TRelatedModel>
Attach a collection of models to the parent instance.
Attach a collection of models to the parent instance.
|
#
|
public
|
saveManyQuietly(iterable<TRelatedModel> $models): iterable<TRelatedModel>
Attach a collection of models to the parent instance without raising any events to the parent model.
Attach a collection of models to the parent instance without raising any events to the parent model.
|
#
|
public
|
create(array $attributes = []): TRelatedModel
Create a new instance of the related model.
Create a new instance of the related model.
|
#
|
public
|
createQuietly(array $attributes = []): TRelatedModel
Create a new instance of the related model without raising any events to the parent model.
Create a new instance of the related model without raising any events to the parent model.
|
#
|
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.
Overriden by
|
#
|
public
|
forceCreateQuietly(array $attributes = []): TRelatedModel
Create a new instance of the related model with mass assignment without raising model events.
Create a new instance of the related model with mass assignment without raising model events.
|
#
|
public
|
createMany(iterable $records): Collection<int, TRelatedModel>
Create a Collection of new instances of the related model.
Create a Collection of new instances of the related model.
|
#
|
public
|
createManyQuietly(iterable $records): Collection<int, TRelatedModel>
Create a Collection of new instances of the related model without raising any events to the parent model.
Create a Collection of new instances of the related model without raising any events to the parent model.
|
#
|
protected
|
setForeignAttributesForCreate(TRelatedModel $model): void
Set the foreign ID for creating a related model.
Set the foreign ID for creating a related model.
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
Overriden by
|
#
|
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.
|
#
|
public
|
take(int $value): $this
Alias to set the "limit" value of the query.
Alias to set the "limit" value of the query.
|
#
|
public
|
limit(int $value): $this
Set the "limit" value of the query.
Set the "limit" value of the query.
|
#
|
public
|
getExistenceCompareKey(): string
Get the key for comparing against the parent key in "has" query.
Get the key for comparing against the parent key in "has" query.
|
#
|
public
|
getParentKey(): mixed
Get the key value of the parent's local key.
Get the key value of the parent's local key.
|
#
|
public
|
getQualifiedParentKeyName(): string
Get the fully qualified parent key name.
Get the fully qualified parent key name.
Overrides
|
#
|
public
|
getForeignKeyName(): string
Get the plain foreign key.
Get the plain foreign key.
|
#
|
public
|
getQualifiedForeignKeyName(): string
Get the foreign key for the relationship.
Get the foreign key for the relationship.
|
#
|
public
|
getLocalKeyName(): string
Get the local key for the relationship.
Get the local key for the relationship.
|
#
|