AsPivot
trait AsPivot
Properties
| Model|null | $pivotParent | The parent model of the relationship. |
|
| Model|null | $pivotRelated | The related model of the relationship. |
|
| protected string | $foreignKey | The name of the foreign key column. |
|
| protected string | $relatedKey | The name of the "other key" column. |
Methods
Create a new pivot model instance.
Create a new pivot model from raw values returned from a query.
Delete the pivot model record from the database.
Get the query builder for a delete operation on the pivot.
Get the table associated with the model.
Get the foreign key column name.
Get the "related key" column name.
Get the "related key" column name.
Set the key names for the pivot model instance.
Determine if the pivot model or given attributes has timestamp attributes.
Get the name of the "created at" column.
Get the name of the "updated at" column.
Get the queueable identity for the entity.
Get a new query to restore one or more models by their queueable IDs.
Get a new query to restore multiple models by their queueable IDs.
Unset all the loaded relations for the instance.
Details
at line 36
static AsPivot
fromAttributes(Model $parent, array $attributes, string $table, bool $exists = false)
Create a new pivot model instance.
at line 63
static AsPivot
fromRawAttributes(Model $parent, array $attributes, string $table, bool $exists = false)
Create a new pivot model from raw values returned from a query.
at line 106
protected Builder
setKeysForSaveQuery(Builder $query)
Set the keys for a save update query.
at line 117
int
delete()
Delete the pivot model record from the database.
Returns affected row count (int) rather than bool|null because pivots use query builder deletion with compound keys.
at line 141
protected Builder
getDeleteQuery()
Get the query builder for a delete operation on the pivot.
at line 152
string
getTable()
Get the table associated with the model.
at line 168
string
getForeignKey()
Get the foreign key column name.
at line 176
string
getRelatedKey()
Get the "related key" column name.
at line 184
string
getOtherKey()
Get the "related key" column name.
at line 194
AsPivot
setPivotKeys(string $foreignKey, string $relatedKey)
Set the key names for the pivot model instance.
at line 208
AsPivot
setRelatedModel(Model|null $related = null)
Set the related model of the relationship.
at line 218
bool
hasTimestampAttributes(array|null $attributes = null)
Determine if the pivot model or given attributes has timestamp attributes.
at line 227
string|null
getCreatedAtColumn()
Get the name of the "created at" column.
at line 237
string|null
getUpdatedAtColumn()
Get the name of the "updated at" column.
at line 247
mixed
getQueueableId()
Get the queueable identity for the entity.
at line 267
Builder
newQueryForRestoration(array|int|string $ids)
Get a new query to restore one or more models by their queueable IDs.
at line 290
protected Builder
newQueryForCollectionRestoration(array $ids)
Get a new query to restore multiple models by their queueable IDs.
at line 317
AsPivot
unsetRelations()
Unset all the loaded relations for the instance.