Methods |
protected
|
filter(array $data): array
Filter the given data, removing any optional values.
Filter the given data, removing any optional values.
|
#
|
protected
|
mergeData(array $data, int $index, array $merge, bool $numericKeys): array
Merge the given data in at the given index.
Merge the given data in at the given index.
|
#
|
protected
|
removeMissingValues(array $data): array
Remove the missing values from the filtered data.
Remove the missing values from the filtered data.
|
#
|
protected
|
when(bool $condition, mixed $value, mixed $default = null): MissingValue|mixed
Retrieve a value if the given "condition" is truthy.
Retrieve a value if the given "condition" is truthy.
|
#
|
public
|
unless(bool $condition, mixed $value, mixed $default = null): MissingValue|mixed
Retrieve a value if the given "condition" is falsy.
Retrieve a value if the given "condition" is falsy.
|
#
|
protected
|
merge(mixed $value): MergeValue|mixed
Merge a value into the array.
Merge a value into the array.
|
#
|
protected
|
mergeWhen(bool $condition, mixed $value, mixed $default = null): MergeValue|mixed
Merge a value if the given condition is truthy.
Merge a value if the given condition is truthy.
|
#
|
protected
|
mergeUnless(bool $condition, mixed $value, mixed $default = null): MergeValue|mixed
Merge a value unless the given condition is truthy.
Merge a value unless the given condition is truthy.
|
#
|
protected
|
attributes(array $attributes): MergeValue
Merge the given attributes.
Merge the given attributes.
|
#
|
public
|
whenHas(string $attribute, mixed $value = null, mixed $default = null): MissingValue|mixed
Retrieve an attribute if it exists on the resource.
Retrieve an attribute if it exists on the resource.
|
#
|
protected
|
whenNull(mixed $value, mixed $default = null): MissingValue|mixed
Retrieve a model attribute if it is null.
Retrieve a model attribute if it is null.
|
#
|
protected
|
whenNotNull(mixed $value, mixed $default = null): MissingValue|mixed
Retrieve a model attribute if it is not null.
Retrieve a model attribute if it is not null.
|
#
|
protected
|
whenAppended(string $attribute, mixed $value = null, mixed $default = null): MissingValue|mixed
Retrieve an accessor when it has been appended.
Retrieve an accessor when it has been appended.
|
#
|
protected
|
whenLoaded(string $relationship, mixed $value = null, mixed $default = null): MissingValue|mixed
Retrieve a relationship if it has been loaded.
Retrieve a relationship if it has been loaded.
|
#
|
public
|
whenCounted(string $relationship, mixed $value = null, mixed $default = null): MissingValue|mixed
Retrieve a relationship count if it exists.
Retrieve a relationship count if it exists.
|
#
|
public
|
whenAggregated(
string $relationship,
string $column,
string $aggregate,
mixed $value = null,
mixed $default = null,
): MissingValue|mixed
Retrieve a relationship aggregated value if it exists.
Retrieve a relationship aggregated value if it exists.
|
#
|
public
|
whenExistsLoaded(string $relationship, mixed $value = null, mixed $default = null): MissingValue|mixed
Retrieve a relationship existence check if it exists.
Retrieve a relationship existence check if it exists.
|
#
|
protected
|
whenPivotLoaded(string $table, mixed $value, mixed $default = null): MissingValue|mixed
Execute a callback if the given pivot table has been loaded.
Execute a callback if the given pivot table has been loaded.
|
#
|
protected
|
whenPivotLoadedAs(string $accessor, string $table, mixed $value, mixed $default = null): MissingValue|mixed
Execute a callback if the given pivot table with a custom accessor has been loaded.
Execute a callback if the given pivot table with a custom accessor has been loaded.
|
#
|
protected
|
hasPivotLoaded(string $table): bool
Determine if the resource has the specified pivot table loaded.
Determine if the resource has the specified pivot table loaded.
|
#
|
protected
|
hasPivotLoadedAs(string $accessor, string $table): bool
Determine if the resource has the specified pivot table loaded with a custom accessor.
Determine if the resource has the specified pivot table loaded with a custom accessor.
|
#
|
protected
|
transform(mixed $value, callable $callback, mixed $default = null): mixed
Transform the given value if it is present.
Transform the given value if it is present.
|
#
|