class DatabaseNotificationCollection extends Collection (View source)
| InteractsWithDictionary | |
| EnumeratesValues | |
| Macroable | |
| Conditionable |
| $this|TWhenReturnType | when($value = null, callable|null $callback = null, callable|null $default = null)
Apply the callback if the given "value" is (or resolves to) truthy. | from Conditionable |
| $this|TUnlessReturnType | unless($value = null, callable|null $callback = null, callable|null $default = null)
Apply the callback if the given "value" is (or resolves to) falsy. | from Conditionable |
| static | make($items = []) No description | from EnumeratesValues |
| static | wrap($value) No description | from EnumeratesValues |
| static | unwrap($value) No description | from EnumeratesValues |
| static EnumeratesValues | empty()
Create a new instance with no items. | from EnumeratesValues |
| static | times($number, callable|null $callback = null) No description | from EnumeratesValues |
| float|int|null | avg($callback = null)
Get the average value of a given key. | from EnumeratesValues |
| float|int|null | average($callback = null)
Alias for the "avg" method. | from EnumeratesValues |
| bool | some($key, mixed $operator = null, mixed $value = null)
Alias for the "contains" method. | from EnumeratesValues |
| never | dd(mixed ...$args)
Dump the given arguments and terminate execution. | from EnumeratesValues |
| $this | dump(mixed ...$args)
Dump the items. | from EnumeratesValues |
| $this | each(callable $callback)
Execute a callback over each item. | from EnumeratesValues |
| EnumeratesValues | eachSpread(callable $callback)
Execute a callback over each nested chunk of items. | from EnumeratesValues |
| bool | every($key, mixed $operator = null, mixed $value = null)
Determine if all items pass the given truth test. | from EnumeratesValues |
| TValue|null | firstWhere(callable|string $key, mixed $operator = null, mixed $value = null)
Get the first item by the given key value pair. | from EnumeratesValues |
| value($key, $default = null) No description | from EnumeratesValues | |
| ensure($type) No description | from EnumeratesValues | |
| bool | isNotEmpty()
Determine if the collection is not empty. | from EnumeratesValues |
| mapSpread(callable $callback) No description | from EnumeratesValues | |
| mapToGroups(callable $callback) No description | from EnumeratesValues | |
| flatMap(callable $callback) No description | from EnumeratesValues | |
| mapInto($class) No description | from EnumeratesValues | |
| mixed | min($callback = null)
Get the min value of a given key. | from EnumeratesValues |
| mixed | max($callback = null)
Get the max value of a given key. | from EnumeratesValues |
| EnumeratesValues | forPage(int $page, int $perPage)
"Paginate" the collection by slicing it into a smaller collection. | from EnumeratesValues |
| partition($key, $operator = null, $value = null) No description | from EnumeratesValues | |
| float|null | percentage(callable $callback, int $precision = 2)
Calculate the percentage of items that pass a given truth test. | from EnumeratesValues |
| mixed | sum($callback = null)
Get the sum of the given values. | from EnumeratesValues |
| $this|TWhenEmptyReturnType | whenEmpty(callable $callback, callable|null $default = null)
Apply the callback if the collection is empty. | from EnumeratesValues |
| $this|TWhenNotEmptyReturnType | whenNotEmpty(callable $callback, callable|null $default = null)
Apply the callback if the collection is not empty. | from EnumeratesValues |
| $this|TUnlessEmptyReturnType | unlessEmpty(callable $callback, callable|null $default = null)
Apply the callback unless the collection is empty. | from EnumeratesValues |
| $this|TUnlessNotEmptyReturnType | unlessNotEmpty(callable $callback, callable|null $default = null)
Apply the callback unless the collection is not empty. | from EnumeratesValues |
| EnumeratesValues | where(callable|string $key, mixed $operator = null, mixed $value = null)
Filter items by the given key value pair. | from EnumeratesValues |
| EnumeratesValues | whereNull(string|null $key = null)
Filter items where the value for the given key is null. | from EnumeratesValues |
| EnumeratesValues | whereNotNull(string|null $key = null)
Filter items where the value for the given key is not null. | from EnumeratesValues |
| EnumeratesValues | whereStrict(string $key, mixed $value)
Filter items by the given key value pair using strict comparison. | from EnumeratesValues |
| EnumeratesValues | whereIn(string $key, Arrayable|iterable $values, bool $strict = false)
Filter items by the given key value pair. | from EnumeratesValues |
| EnumeratesValues | whereInStrict(string $key, Arrayable|iterable $values)
Filter items by the given key value pair using strict comparison. | from EnumeratesValues |
| EnumeratesValues | whereBetween(string $key, Arrayable|iterable $values)
Filter items such that the value of the given key is between the given values. | from EnumeratesValues |
| EnumeratesValues | whereNotBetween(string $key, Arrayable|iterable $values)
Filter items such that the value of the given key is not between the given values. | from EnumeratesValues |
| EnumeratesValues | whereNotIn(string $key, Arrayable|iterable $values, bool $strict = false)
Filter items by the given key value pair. | from EnumeratesValues |
| EnumeratesValues | whereNotInStrict(string $key, Arrayable|iterable $values)
Filter items by the given key value pair using strict comparison. | from EnumeratesValues |
| whereInstanceOf($type) No description | from EnumeratesValues | |
| TPipeReturnType | pipe(callable $callback)
Pass the collection to the given callback and return the result. | from EnumeratesValues |
| TPipeIntoValue | pipeInto(TPipeIntoValue> $class)
Pass the collection into a new class. | from EnumeratesValues |
| mixed | pipeThrough(callable[] $callbacks)
Pass the collection through a series of callable pipes and return the result. | from EnumeratesValues |
| TReduceReturnType | reduce(callable $callback, TReduceInitial $initial = null)
Reduce the collection to a single value. | from EnumeratesValues |
| array | reduceSpread(callable $callback, mixed ...$initial)
Reduce the collection to multiple aggregate values. | from EnumeratesValues |
| TReduceWithKeysReturnType | reduceWithKeys(callable $callback, TReduceWithKeysInitial $initial = null)
Reduce an associative collection to a single value. | from EnumeratesValues |
| EnumeratesValues | reject($callback = true)
Create a collection of all elements that do not pass a given truth test. | from EnumeratesValues |
| $this | tap(callable $callback)
Pass the collection to the given callback and then return it. | from EnumeratesValues |
| EnumeratesValues | unique($key = null, bool $strict = false)
Return only unique items from the collection array. | from EnumeratesValues |
| EnumeratesValues | uniqueStrict($key = null)
Return only unique items from the collection array using strict comparison. | from EnumeratesValues |
| TValue> | collect()
Collect the values into a collection. | from EnumeratesValues |
| toArray() No description | from EnumeratesValues | |
| array | jsonSerialize() No description | from EnumeratesValues |
| string | toJson(int $options = 0)
Get the collection of items as JSON. | from EnumeratesValues |
| CachingIterator | getCachingIterator(int $flags = CachingIterator::CALL_TOSTRING)
Get a CachingIterator instance. | from EnumeratesValues |
| string | __toString()
Convert the collection to its string representation. | from EnumeratesValues |
| $this | escapeWhenCastingToString(bool $escape = true)
Indicate that the model's string representation should be escaped when __toString is invoked. | from EnumeratesValues |
| static void | proxy(string $method)
Add a method to the list of proxied methods. | from EnumeratesValues |
| mixed | __get(string $key)
Dynamically access collection proxies. | from EnumeratesValues |
| getArrayableItems($items) No description | from EnumeratesValues | |
| Closure | operatorForWhere(callable|string $key, string|null $operator = null, mixed $value = null)
Get an operator checker callback. | from EnumeratesValues |
| bool | useAsCallable(mixed $value)
Determine if the given value is callable, but not a string. | from EnumeratesValues |
| callable | valueRetriever(callable|string|null $value)
Get a value retrieving callback. | from EnumeratesValues |
| equality(mixed $value)
Make a function to check an item's equality. | from EnumeratesValues | |
| Closure | negate(Closure $callback)
Make a function using another function, by negating its result. | from EnumeratesValues |
| identity()
Make a function that returns what's passed to it. | from EnumeratesValues | |
| static void | macro(string $name, object|callable $macro)
Register a custom macro. | from Macroable |
| static void | mixin(object $mixin, bool $replace = true)
Mix another object into the class. | from Macroable |
| static bool | hasMacro(string $name)
Checks if macro is registered. | from Macroable |
| static void | flushMacros()
Flush the existing macros. | from Macroable |
| static mixed | __callStatic(string $method, array $parameters)
Dynamically handle calls to the class. | from Macroable |
| mixed | __call(string $method, array $parameters)
Dynamically handle calls to the class. | from Macroable |
| void | __construct(TValue>|TValue>|null $items = [])
Create a new collection. | from Collection |
| static Enumerable | range(int $from, int $to) No description | from Collection |
| array | all() No description | from Collection |
| TValue> | lazy()
Get a lazy collection for the items in this collection. | from Collection |
| float|int|null | median(string|array<array-key,string>|null $key = null)
Get the median of a given key. | from Collection |
| array<int,float|int>|null | mode(string|array<array-key,string>|null $key = null)
Get the mode of a given key. | from Collection |
| collapse()
Collapse the collection of items into a single array. | from Collection | |
| bool | contains($key, mixed $operator = null, mixed $value = null)
Determine if a key exists in the collection. | from Collection |
| bool | containsStrict($key, TValue|null $value = null)
Determine if an item exists, using strict comparison. | from Collection |
| bool | doesntContain(mixed $key, mixed $operator = null, mixed $value = null)
Determine if an item is not contained in the collection. | from Collection |
| crossJoin(...$lists) No description | from Collection | |
| Enumerable | diff(TValue>|TValue> $items)
Diff the collection with the given items. | from Collection |
| Enumerable | diffUsing(TValue>|TValue> $items, callable $callback)
Get the items in the collection that are not present in the given items, using the callback. | from Collection |
| Enumerable | diffAssoc(TValue>|TValue> $items)
Get the items in the collection whose keys and values are not present in the given items. | from Collection |
| Enumerable | diffAssocUsing(TValue>|TValue> $items, callable $callback)
Get the items in the collection whose keys and values are not present in the given items, using the callback. | from Collection |
| Enumerable | diffKeys(TValue>|TValue> $items)
Get the items in the collection whose keys are not present in the given items. | from Collection |
| Enumerable | diffKeysUsing(TValue>|TValue> $items, callable $callback)
Get the items in the collection whose keys are not present in the given items, using the callback. | from Collection |
| Enumerable | duplicates($callback = null, bool $strict = false)
Retrieve duplicate items from the collection. | from Collection |
| Enumerable | duplicatesStrict($callback = null)
Retrieve duplicate items from the collection using strict comparison. | from Collection |
| duplicateComparator(bool $strict)
Get the comparison function to detect duplicates. | from Collection | |
| Enumerable | except(TKey>|TKey> $keys) No description | from Collection |
| Enumerable | filter(callable|null $callback = null)
Run a filter over each of the items. | from Collection |
| first(callable|null $callback = null, $default = null) No description | from Collection | |
| Enumerable | flatten(int $depth = INF)
Get a flattened array of the items in the collection. | from Collection |
| flip()
Flip the items in the collection. | from Collection | |
| $this | forget($keys)
Remove an item from the collection by key. | from Collection |
| get($key, $default = null) No description | from Collection | |
| getOrPut($key, $value) No description | from Collection | |
| groupBy($groupBy, $preserveKeys = false) No description | from Collection | |
| keyBy($keyBy) No description | from Collection | |
| bool | has(TKey|TKey> $key)
Determine if an item exists in the collection by key. | from Collection |
| bool | hasAny(mixed $key)
Determine if any of the keys exist in the collection. | from Collection |
| string | implode(callable|string $value, string|null $glue = null)
Concatenate values of a given key as a string. | from Collection |
| Enumerable | intersect(TValue>|TValue> $items)
Intersect the collection with the given items. | from Collection |
| Enumerable | intersectUsing(TValue>|TValue> $items, callable $callback)
Intersect the collection with the given items, using the callback. | from Collection |
| Enumerable | intersectAssoc(TValue>|TValue> $items)
Intersect the collection with the given items with additional index check. | from Collection |
| Enumerable | intersectAssocUsing(TValue>|TValue> $items, callable $callback)
Intersect the collection with the given items with additional index check, using the callback. | from Collection |
| Enumerable | intersectByKeys(TValue>|TValue> $items)
Intersect the collection with the given items by key. | from Collection |
| bool | isEmpty()
Determine if the collection is empty or not. | from Collection |
| bool | containsOneItem()
Determine if the collection contains a single item. | from Collection |
| string | join(string $glue, string $finalGlue = '')
Join all items from the collection using a string. The final items can use a separate glue string. | from Collection |
| keys()
Get the keys of the collection items. | from Collection | |
| last(callable|null $callback = null, $default = null) No description | from Collection | |
| pluck($value, $key = null)
Get an array with the values of a given key. | from Collection | |
| map(callable $callback) No description | from Collection | |
| mapToDictionary(callable $callback) No description | from Collection | |
| mapWithKeys(callable $callback) No description | from Collection | |
| Enumerable | merge(TValue>|TValue> $items)
Merge the collection with the given items. | from Collection |
| mergeRecursive($items) No description | from Collection | |
| Collection | multiply(int $multiplier)
Multiply the items in the collection by the multiplier. | from Collection |
| combine($values) No description | from Collection | |
| Enumerable | union(TValue>|TValue> $items)
Union the collection with the given items. | from Collection |
| Enumerable | nth(int $step, int $offset = 0)
Create a new collection consisting of every n-th element. | from Collection |
| Enumerable | only(TKey>|TKey>|string $keys) No description | from Collection |
| Collection | select(TKey>|TKey>|string|null $keys)
Select specific values from the items within the collection. | from Collection |
| pop($count = 1) No description | from Collection | |
| $this | prepend(TValue $value, TKey $key = null)
Push an item onto the beginning of the collection. | from Collection |
| $this | push(TValue ...$values)
Push one or more items onto the end of the collection. | from Collection |
| $this | unshift(TValue ...$values)
Prepend one or more items to the beginning of the collection. | from Collection |
| concat($source) No description | from Collection | |
| pull($key, $default = null) No description | from Collection | |
| $this | put(TKey $key, TValue $value)
Put an item in the collection by key. | from Collection |
| random($number = null, $preserveKeys = false) No description | from Collection | |
| Enumerable | replace(TValue>|TValue> $items)
Replace the collection items with the given items. | from Collection |
| Enumerable | replaceRecursive(TValue>|TValue> $items)
Recursively replace the collection items with the given items. | from Collection |
| Enumerable | reverse()
Reverse items order. | from Collection |
| TKey|bool | search($value, bool $strict = false)
Search the collection for a given value and return the corresponding key if successful. | from Collection |
| TValue|null | before($value, bool $strict = false)
Get the item before the given item. | from Collection |
| TValue|null | after($value, bool $strict = false)
Get the item after the given item. | from Collection |
| shift($count = 1) No description | from Collection | |
| Enumerable | shuffle()
Shuffle the items in the collection. | from Collection |
| sliding($size = 2, $step = 1) No description | from Collection | |
| Enumerable | skip(int $count)
Skip the first {$count} items. | from Collection |
| Enumerable | skipUntil($value)
Skip items in the collection until the given condition is met. | from Collection |
| Enumerable | skipWhile($value)
Skip items in the collection while the given condition is met. | from Collection |
| Enumerable | slice(int $offset, int|null $length = null)
Slice the underlying collection array. | from Collection |
| split($numberOfGroups) No description | from Collection | |
| splitIn($numberOfGroups) No description | from Collection | |
| TValue | sole($key = null, mixed $operator = null, mixed $value = null)
Get the first item in the collection, but only if exactly one item exists. Otherwise, throw an exception. | from Collection |
| TValue | firstOrFail($key = null, mixed $operator = null, mixed $value = null)
Get the first item in the collection but throw an exception if no matching items exist. | from Collection |
| chunk($size) No description | from Collection | |
| chunkWhile(callable $callback) No description | from Collection | |
| Enumerable | sort($callback = null)
Sort through each item with a callback. | from Collection |
| Enumerable | sortDesc(int $options = SORT_REGULAR)
Sort items in descending order. | from Collection |
| Enumerable | sortBy($callback, int $options = SORT_REGULAR, bool $descending = false)
Sort the collection using the given callback. | from Collection |
| Collection | sortByMany(array $comparisons = [], int $options = SORT_REGULAR)
Sort the collection using multiple comparisons. | from Collection |
| Enumerable | sortByDesc($callback, int $options = SORT_REGULAR)
Sort the collection in descending order using the given callback. | from Collection |
| Enumerable | sortKeys(int $options = SORT_REGULAR, bool $descending = false)
Sort the collection keys. | from Collection |
| Enumerable | sortKeysDesc(int $options = SORT_REGULAR)
Sort the collection keys in descending order. | from Collection |
| Enumerable | sortKeysUsing(callable $callback)
Sort the collection keys using a callback. | from Collection |
| Collection | splice(int $offset, int|null $length = null, TValue> $replacement = [])
Splice a portion of the underlying collection array. | from Collection |
| Enumerable | take(int $limit)
Take the first or last {$limit} items. | from Collection |
| Enumerable | takeUntil($value)
Take items in the collection until the given condition is met. | from Collection |
| Enumerable | takeWhile($value)
Take items in the collection while the given condition is met. | from Collection |
| $this | transform(callable $callback)
Transform each item in the collection using a callback. | from Collection |
| Collection | dot()
Flatten a multi-dimensional associative array with dots. | from Collection |
| Enumerable | undot()
Convert a flatten "dot" notation array into an expanded array. | from Collection |
| values() No description | from Collection | |
| zip($items)
Zip the collection together with one or more arrays. | from Collection | |
| pad($size, $value)
Pad collection to the specified length with a value. | from Collection | |
| Traversable | getIterator()
Get an iterator for the items. | from Collection |
| int | count()
Count the number of items in the collection. | from Collection |
| countBy($countBy = null)
Count the number of items in the collection by a field or using a callback. | from Collection | |
| $this | add(TValue $item)
Add an item to the collection. | from Collection |
| TValue> | toBase()
Get a base Support collection instance from this collection. | from Collection |
| bool | offsetExists(TKey $key)
Determine if an item exists at an offset. | from Collection |
| mixed | offsetGet(TKey $key)
Get an item at a given offset. | from Collection |
| void | offsetSet(TKey|null $key, TValue $value)
Set the item at a given offset. | from Collection |
| void | offsetUnset(TKey $key)
Unset the item at a given offset. | from Collection |
| mixed | getDictionaryKey(mixed $attribute)
Get a dictionary key attribute - casting it to a string if necessary. | from InteractsWithDictionary |
| find($key, $default = null) No description | from Collection | |
| $this | load($relations)
Load a set of relationships onto the collection. | from Collection |
| $this | loadAggregate($relations, string $column, string|null $function = null)
Load a set of aggregations over relationship's column onto the collection. | from Collection |
| $this | loadCount($relations)
Load a set of relationship counts onto the collection. | from Collection |
| $this | loadMax($relations, string $column)
Load a set of relationship's max column values onto the collection. | from Collection |
| $this | loadMin($relations, string $column)
Load a set of relationship's min column values onto the collection. | from Collection |
| $this | loadSum($relations, string $column)
Load a set of relationship's column summations onto the collection. | from Collection |
| $this | loadAvg($relations, string $column)
Load a set of relationship's average column values onto the collection. | from Collection |
| $this | loadExists($relations)
Load a set of related existences onto the collection. | from Collection |
| $this | loadMissing($relations)
Load a set of relationships onto the collection if they are not already eager loaded. | from Collection |
| void | loadMissingRelation(Collection $models, array $path)
Load a relationship path if it is not already eager loaded. | from Collection |
| $this | loadMorph(string $relation, $relations)
Load a set of relationships onto the mixed relationship collection. | from Collection |
| $this | loadMorphCount(string $relation, $relations)
Load a set of relationship counts onto the mixed relationship collection. | from Collection |
| array<int,array-key> | modelKeys()
Get the array of primary keys. | from Collection |
| Collection | fresh(array<array-key,string>|string $with = [])
Reload a fresh model instance from the database for all the entities. | from Collection |
| $this | makeHidden(array<array-key,string>|string $attributes)
Make the given, typically visible, attributes hidden across the entire collection. | from Collection |
| $this | makeVisible(array<array-key,string>|string $attributes)
Make the given, typically hidden, attributes visible across the entire collection. | from Collection |
| $this | setVisible(array<int,string> $visible)
Set the visible attributes across the entire collection. | from Collection |
| $this | setHidden(array<int,string> $hidden)
Set the hidden attributes across the entire collection. | from Collection |
| $this | append(array<array-key,string>|string $attributes)
Append an attribute across the entire collection. | from Collection |
| TModel> | getDictionary(TModel>|null $items = null)
Get a dictionary keyed by primary keys. | from Collection |
| string|null | getQueueableClass()
Get the type of the entities being queued. | from Collection |
| string | getQueueableModelClass(Model $model)
Get the queueable class name for the given model. | from Collection |
| array<int,mixed> | getQueueableIds()
Get the identifiers for all of the entities. | from Collection |
| array<int,string> | getQueueableRelations()
Get the relationships of the entities being queued. | from Collection |
| string|null | getQueueableConnection()
Get the connection of the entities being queued. | from Collection |
| TModel> | toQuery()
Get the Eloquent query builder from the collection. | from Collection |
| void | markAsRead()
Mark all notifications as read. | |
| void | markAsUnread()
Mark all notifications as unread. |
Apply the callback if the given "value" is (or resolves to) truthy.
Apply the callback if the given "value" is (or resolves to) falsy.
No description
No description
No description
Create a new instance with no items.
No description
Get the average value of a given key.
Alias for the "avg" method.
Alias for the "contains" method.
Dump the given arguments and terminate execution.
Dump the items.
Execute a callback over each item.
Execute a callback over each nested chunk of items.
Determine if all items pass the given truth test.
Get the first item by the given key value pair.
No description
No description
Determine if the collection is not empty.
No description
No description
No description
No description
Get the min value of a given key.
Get the max value of a given key.
"Paginate" the collection by slicing it into a smaller collection.
No description
Calculate the percentage of items that pass a given truth test.
Get the sum of the given values.
Apply the callback if the collection is empty.
Apply the callback if the collection is not empty.
Apply the callback unless the collection is empty.
Apply the callback unless the collection is not empty.
Filter items by the given key value pair.
Filter items where the value for the given key is null.
Filter items where the value for the given key is not null.
Filter items by the given key value pair using strict comparison.
Filter items by the given key value pair.
Filter items by the given key value pair using strict comparison.
Filter items such that the value of the given key is between the given values.
Filter items such that the value of the given key is not between the given values.
Filter items by the given key value pair.
Filter items by the given key value pair using strict comparison.
No description
Pass the collection to the given callback and return the result.
Pass the collection into a new class.
Pass the collection through a series of callable pipes and return the result.
Reduce the collection to a single value.
Reduce the collection to multiple aggregate values.
Reduce an associative collection to a single value.
Create a collection of all elements that do not pass a given truth test.
Pass the collection to the given callback and then return it.
Return only unique items from the collection array.
Return only unique items from the collection array using strict comparison.
Collect the values into a collection.
No description
No description
Get the collection of items as JSON.
Get a CachingIterator instance.
Convert the collection to its string representation.
Indicate that the model's string representation should be escaped when __toString is invoked.
Add a method to the list of proxied methods.
Dynamically access collection proxies.
No description
Get an operator checker callback.
Determine if the given value is callable, but not a string.
Get a value retrieving callback.
Make a function to check an item's equality.
Make a function using another function, by negating its result.
Make a function that returns what's passed to it.
Register a custom macro.
Mix another object into the class.
Checks if macro is registered.
Flush the existing macros.
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Create a new collection.
No description
No description
Get a lazy collection for the items in this collection.
Get the median of a given key.
Get the mode of a given key.
Collapse the collection of items into a single array.
Determine if a key exists in the collection.
Determine if an item exists, using strict comparison.
Determine if an item is not contained in the collection.
No description
Diff the collection with the given items.
Get the items in the collection that are not present in the given items, using the callback.
Get the items in the collection whose keys and values are not present in the given items.
Get the items in the collection whose keys and values are not present in the given items, using the callback.
Get the items in the collection whose keys are not present in the given items.
Get the items in the collection whose keys are not present in the given items, using the callback.
Retrieve duplicate items from the collection.
Retrieve duplicate items from the collection using strict comparison.
Get the comparison function to detect duplicates.
No description
Run a filter over each of the items.
No description
Get a flattened array of the items in the collection.
Flip the items in the collection.
Remove an item from the collection by key.
\Illuminate\Contracts\Support\Arrayable<array-key, TValue>|iterable<array-key, TKey>|TKey $keys
No description
No description
No description
No description
Determine if an item exists in the collection by key.
Determine if any of the keys exist in the collection.
Concatenate values of a given key as a string.
Intersect the collection with the given items.
Intersect the collection with the given items, using the callback.
Intersect the collection with the given items with additional index check.
Intersect the collection with the given items with additional index check, using the callback.
Intersect the collection with the given items by key.
Determine if the collection is empty or not.
Determine if the collection contains a single item.
Join all items from the collection using a string. The final items can use a separate glue string.
Get the keys of the collection items.
No description
Get an array with the values of a given key.
No description
No description
No description
Merge the collection with the given items.
No description
Multiply the items in the collection by the multiplier.
No description
Union the collection with the given items.
Create a new collection consisting of every n-th element.
No description
Select specific values from the items within the collection.
No description
Push an item onto the beginning of the collection.
Push one or more items onto the end of the collection.
Prepend one or more items to the beginning of the collection.
No description
No description
Put an item in the collection by key.
No description
Replace the collection items with the given items.
Recursively replace the collection items with the given items.
Reverse items order.
Search the collection for a given value and return the corresponding key if successful.
Get the item before the given item.
Get the item after the given item.
No description
Shuffle the items in the collection.
No description
Skip the first {$count} items.
Skip items in the collection until the given condition is met.
Skip items in the collection while the given condition is met.
Slice the underlying collection array.
No description
No description
Get the first item in the collection, but only if exactly one item exists. Otherwise, throw an exception.
Get the first item in the collection but throw an exception if no matching items exist.
No description
No description
Sort through each item with a callback.
Sort items in descending order.
Sort the collection using the given callback.
Sort the collection using multiple comparisons.
Sort the collection in descending order using the given callback.
Sort the collection keys.
Sort the collection keys in descending order.
Sort the collection keys using a callback.
Splice a portion of the underlying collection array.
Take the first or last {$limit} items.
Take items in the collection until the given condition is met.
Take items in the collection while the given condition is met.
Transform each item in the collection using a callback.
Flatten a multi-dimensional associative array with dots.
Convert a flatten "dot" notation array into an expanded array.
No description
Zip the collection together with one or more arrays.
Pad collection to the specified length with a value.
Get an iterator for the items.
Count the number of items in the collection.
Count the number of items in the collection by a field or using a callback.
Add an item to the collection.
Get a base Support collection instance from this collection.
Determine if an item exists at an offset.
Get an item at a given offset.
Set the item at a given offset.
Unset the item at a given offset.
Get a dictionary key attribute - casting it to a string if necessary.
No description
Load a set of relationships onto the collection.
Load a set of aggregations over relationship's column onto the collection.
Load a set of relationship counts onto the collection.
Load a set of relationship's max column values onto the collection.
Load a set of relationship's min column values onto the collection.
Load a set of relationship's column summations onto the collection.
Load a set of relationship's average column values onto the collection.
Load a set of related existences onto the collection.
Load a set of relationships onto the collection if they are not already eager loaded.
Load a relationship path if it is not already eager loaded.
Load a set of relationships onto the mixed relationship collection.
Load a set of relationship counts onto the mixed relationship collection.
Get the array of primary keys.
Reload a fresh model instance from the database for all the entities.
Make the given, typically visible, attributes hidden across the entire collection.
Make the given, typically hidden, attributes visible across the entire collection.
Set the visible attributes across the entire collection.
Set the hidden attributes across the entire collection.
Append an attribute across the entire collection.
Get a dictionary keyed by primary keys.
Get the type of the entities being queued.
Get the queueable class name for the given model.
Get the identifiers for all of the entities.
Get the relationships of the entities being queued.
Get the connection of the entities being queued.
Get the Eloquent query builder from the collection.
Mark all notifications as read.
Mark all notifications as unread.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/11.x/Illuminate/Notifications/DatabaseNotificationCollection.html