interface Enumerable implements Arrayable, Countable, IteratorAggregate, Jsonable, JsonSerializable (View source)

Methods

TValue>
toArray()

Get the collection of items as a plain array.

string
toJson(int $options = 0)

Get the collection of items as JSON.

static TMakeValue>
make(TMakeValue>|TMakeValue>|null $items = [])

Create a new collection instance if the value isn't one already.

static Enumerable
times(int $number, callable|null $callback = null)

Create a new instance by invoking the callback a given amount of times.

static Enumerable
range(int $from, int $to)

Create a collection with the given range.

static TWrapValue>
wrap(TWrapValue>|TWrapValue $value)

Wrap the given value in a collection if applicable.

static TUnwrapValue>
unwrap(TUnwrapValue>|TUnwrapValue> $value)

Get the underlying items from the given collection if applicable.

static Enumerable
empty()

Create a new instance with no items.

array
all()

Get all items in the enumerable.

float|int|null
average(TValue): float|int)|string|null $callback = null)

Alias for the "avg" method.

float|int|null
median(string|array<array-key, string>|null $key = null)

Get the median of a given key.

array<int, float|int>|null
mode(string|array<array-key, string>|null $key = null)

Get the mode of a given key.

static<int, mixed>
collapse()

Collapse the items into a single enumerable.

bool
some(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Alias for the "contains" method.

bool
containsStrict(TValue): bool|TValue|(array-key) $key, TValue|null $value = null)

Determine if an item exists, using strict comparison.

float|int|null
avg(TValue): float|int)|string|null $callback = null)

Get the average value of a given key.

bool
contains(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Determine if an item exists in the enumerable.

bool
doesntContain(mixed $key, mixed $operator = null, mixed $value = null)

Determine if an item is not contained in the collection.

TValue|TCrossJoinValue>>
crossJoin(TCrossJoinValue>|TCrossJoinValue> ...$lists)

Cross join with the given lists, returning all possible permutations.

never
dd(mixed ...$args)

Dump the collection and end the script.

$this
dump(mixed ...$args)

Dump the collection.

diff(TValue>|TValue> $items)

Get the items that are not present in the given items.

diffUsing(TValue>|TValue> $items, callable $callback)

Get the items that are not present in the given items, using the callback.

diffAssoc(TValue>|TValue> $items)

Get the items whose keys and values are not present in the given items.

diffAssocUsing(TValue>|TValue> $items, callable $callback)

Get the items whose keys and values are not present in the given items, using the callback.

diffKeys(TKey, mixed>|TKey, mixed> $items)

Get the items whose keys are not present in the given items.

diffKeysUsing(TKey, mixed>|TKey, mixed> $items, callable $callback)

Get the items whose keys are not present in the given items, using the callback.

duplicates(TValue): bool|string|null $callback = null, bool $strict = false)

Retrieve duplicate items.

duplicatesStrict(TValue): bool|string|null $callback = null)

Retrieve duplicate items using strict comparison.

$this
each(callable $callback)

Execute a callback over each item.

eachSpread(callable $callback)

Execute a callback over each nested chunk of items.

bool
every(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Determine if all items pass the given truth test.

except(TKey>|TKey> $keys)

Get all items except for those with the specified keys.

filter(callable|null $callback = null)

Run a filter over each of the items.

$this|TWhenReturnType
when(bool $value, callable|null $callback = null, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) truthy.

$this|TWhenEmptyReturnType
whenEmpty(callable $callback, callable|null $default = null)

Apply the callback if the collection is empty.

$this|TWhenNotEmptyReturnType
whenNotEmpty(callable $callback, callable|null $default = null)

Apply the callback if the collection is not empty.

$this|TUnlessReturnType
unless(bool $value, callable $callback, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) falsy.

$this|TUnlessEmptyReturnType
unlessEmpty(callable $callback, callable|null $default = null)

Apply the callback unless the collection is empty.

$this|TUnlessNotEmptyReturnType
unlessNotEmpty(callable $callback, callable|null $default = null)

Apply the callback unless the collection is not empty.

where(string $key, mixed $operator = null, mixed $value = null)

Filter items by the given key value pair.

whereNull(string|null $key = null)

Filter items where the value for the given key is null.

whereNotNull(string|null $key = null)

Filter items where the value for the given key is not null.

whereStrict(string $key, mixed $value)

Filter items by the given key value pair using strict comparison.

whereIn(string $key, Arrayable|iterable $values, bool $strict = false)

Filter items by the given key value pair.

whereInStrict(string $key, Arrayable|iterable $values)

Filter items by the given key value pair using strict comparison.

whereBetween(string $key, Arrayable|iterable $values)

Filter items such that the value of the given key is between the given values.

whereNotBetween(string $key, Arrayable|iterable $values)

Filter items such that the value of the given key is not between the given values.

whereNotIn(string $key, Arrayable|iterable $values, bool $strict = false)

Filter items by the given key value pair.

whereNotInStrict(string $key, Arrayable|iterable $values)

Filter items by the given key value pair using strict comparison.

TWhereInstanceOf>
whereInstanceOf(TWhereInstanceOf>|TWhereInstanceOf>> $type)

Filter the items, removing any items that don't match the given type(s).

TValue|TFirstDefault
first(callable|null $callback = null, TFirstDefault|TFirstDefault $default = null)

Get the first item from the enumerable passing the given truth test.

TValue|null
firstWhere(string $key, mixed $operator = null, mixed $value = null)

Get the first item by the given key value pair.

flatten(int $depth = INF)

Get a flattened array of the items in the collection.

TKey>
flip()

Flip the values with their keys.

TValue|TGetDefault
get(TKey $key, TGetDefault|TGetDefault $default = null)

Get an item from the collection by key.

TValue)>>
groupBy(TGroupKey|array|string $groupBy, bool $preserveKeys = false)

Group an associative array by a field or using a callback.

TValue>
keyBy(TNewKey|array|string $keyBy)

Key an associative array by a field or using a callback.

bool
has(TKey|TKey> $key)

Determine if an item exists in the collection by key.

bool
hasAny(mixed $key)

Determine if any of the keys exist in the collection.

string
implode(TKey): mixed|string $value, string|null $glue = null)

Concatenate values of a given key as a string.

intersect(TValue>|TValue> $items)

Intersect the collection with the given items.

intersectUsing(TValue>|TValue> $items, callable $callback)

Intersect the collection with the given items, using the callback.

intersectAssoc(TValue>|TValue> $items)

Intersect the collection with the given items with additional index check.

intersectAssocUsing(TValue>|TValue> $items, callable $callback)

Intersect the collection with the given items with additional index check, using the callback.

intersectByKeys(TKey, mixed>|TKey, mixed> $items)

Intersect the collection with the given items by key.

bool
isEmpty()

Determine if the collection is empty or not.

bool
isNotEmpty()

Determine if the collection is not empty.

bool
containsOneItem()

Determine if the collection contains a single item.

string
join(string $glue, string $finalGlue = '')

Join all items from the collection using a string. The final items can use a separate glue string.

TKey>
keys()

Get the keys of the collection items.

TValue|TLastDefault
last(callable|null $callback = null, TLastDefault|TLastDefault $default = null)

Get the last item from the collection.

TMapValue>
map(callable $callback)

Run a map over each of the items.

mapSpread(callable $callback)

Run a map over each nested chunk of items.

TMapToDictionaryValue>>
mapToDictionary(callable $callback)

Run a dictionary map over the items.

TMapToGroupsValue>>
mapToGroups(callable $callback)

Run a grouping map over the items.

TMapWithKeysValue>
mapWithKeys(callable $callback)

Run an associative map over each of the items.

TFlatMapValue>
flatMap(callable $callback)

Map a collection and flatten the result by a single level.

TMapIntoValue>
mapInto(TMapIntoValue> $class)

Map the values into a new class.

merge(TValue>|TValue> $items)

Merge the collection with the given items.

TValue|TMergeRecursiveValue>
mergeRecursive(TMergeRecursiveValue>|TMergeRecursiveValue> $items)

Recursively merge the collection with the given items.

TCombineValue>
combine(TCombineValue>|TCombineValue> $values)

Create a collection by using this collection for keys and another for its values.

union(TValue>|TValue> $items)

Union the collection with the given items.

mixed
min(TValue): mixed|string|null $callback = null)

Get the min value of a given key.

mixed
max(TValue): mixed|string|null $callback = null)

Get the max value of a given key.

nth(int $step, int $offset = 0)

Create a new collection consisting of every n-th element.

only(TKey>|TKey>|string $keys)

Get the items with the specified keys.

forPage(int $page, int $perPage)

"Paginate" the collection by slicing it into a smaller collection.

TValue>>
partition(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Partition the collection into two arrays using the given callback or key.

TKey|TValue|TConcatValue>
concat(TConcatValue> $source)

Push all of the given items onto the collection.

TValue>|TValue
random(int|null $number = null)

Get one or a specified number of items randomly from the collection.

TReduceInitial|TReduceReturnType
reduce(callable $callback, TReduceInitial $initial = null)

Reduce the collection to a single value.

array
reduceSpread(callable $callback, mixed ...$initial)

Reduce the collection to multiple aggregate values.

replace(TValue>|TValue> $items)

Replace the collection items with the given items.

replaceRecursive(TValue>|TValue> $items)

Recursively replace the collection items with the given items.

reverse()

Reverse items order.

TKey|bool
search(TValue|TKey): bool $value, bool $strict = false)

Search the collection for a given value and return the corresponding key if successful.

TValue|null
before(TValue|TKey): bool $value, bool $strict = false)

Get the item before the given item.

TValue|null
after(TValue|TKey): bool $value, bool $strict = false)

Get the item after the given item.

shuffle()

Shuffle the items in the collection.

static<int, static>
sliding(int $size = 2, int $step = 1)

Create chunks representing a "sliding window" view of the items in the collection.

skip(int $count)

Skip the first {$count} items.

skipUntil(TValue|TKey): bool $value)

Skip items in the collection until the given condition is met.

skipWhile(TValue|TKey): bool $value)

Skip items in the collection while the given condition is met.

slice(int $offset, int|null $length = null)

Get a slice of items from the enumerable.

static<int, static>
split(int $numberOfGroups)

Split a collection into a certain number of groups.

TValue
sole(TKey): bool|string $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.

TValue
firstOrFail(TKey): bool|string $key = null, mixed $operator = null, mixed $value = null)

Get the first item in the collection but throw an exception if no matching items exist.

static<int, static>
chunk(int $size)

Chunk the collection into chunks of the given size.

TValue>>
chunkWhile(callable $callback)

Chunk the collection into chunks with a callback.

static<int, static>
splitIn(int $numberOfGroups)

Split a collection into a certain number of groups, and fill the first groups completely.

sort(TValue): int|null|int $callback = null)

Sort through each item with a callback.

sortDesc(int $options = SORT_REGULAR)

Sort items in descending order.

sortBy(TValue): mixed|TKey): mixed|string|array{string, string}>|TKey): mixed|string $callback, int $options = SORT_REGULAR, bool $descending = false)

Sort the collection using the given callback.

sortByDesc(TValue): mixed|TKey): mixed|string|array{string, string}>|TKey): mixed|string $callback, int $options = SORT_REGULAR)

Sort the collection in descending order using the given callback.

sortKeys(int $options = SORT_REGULAR, bool $descending = false)

Sort the collection keys.

sortKeysDesc(int $options = SORT_REGULAR)

Sort the collection keys in descending order.

sortKeysUsing(callable $callback)

Sort the collection keys using a callback.

mixed
sum(TValue): mixed|string|null $callback = null)

Get the sum of the given values.

take(int $limit)

Take the first or last {$limit} items.

takeUntil(TValue|TKey): bool $value)

Take items in the collection until the given condition is met.

takeWhile(TValue|TKey): bool $value)

Take items in the collection while the given condition is met.

$this
tap(callable $callback)

Pass the collection to the given callback and then return it.

TPipeReturnType
pipe(callable $callback)

Pass the enumerable to the given callback and return the result.

TPipeIntoValue
pipeInto(TPipeIntoValue> $class)

Pass the collection into a new class.

mixed
pipeThrough(callable[] $pipes)

Pass the collection through a series of callable pipes and return the result.

static<array-key, mixed>
pluck(string|array<array-key, string> $value, string|null $key = null)

Get the values of a given key.

reject(TKey): bool|bool|TValue $callback = true)

Create a collection of all elements that do not pass a given truth test.

undot()

Convert a flatten "dot" notation array into an expanded array.

unique(TKey): mixed|string|null $key = null, bool $strict = false)

Return only unique items from the collection array.

uniqueStrict(TKey): mixed|string|null $key = null)

Return only unique items from the collection array using strict comparison.

TValue>
values()

Reset the keys on the underlying array.

TValue|TPadValue>
pad(int $size, TPadValue $value)

Pad collection to the specified length with a value.

getIterator()

Get the values iterator.

int
count()

Count the number of items in the collection.

static<array-key, int>
countBy(TKey): array-key|string|null $countBy = null)

Count the number of items in the collection by a field or using a callback.

TValue|TZipValue>>
zip(TZipValue>|TZipValue> $items)

Zip the collection together with one or more arrays.

TValue>
collect()

Collect the values into a collection.

mixed
jsonSerialize()

Convert the object into something JSON serializable.

getCachingIterator(int $flags = CachingIterator::CALL_TOSTRING)

Get a CachingIterator instance.

string
__toString()

Convert the collection to its string representation.

$this
escapeWhenCastingToString(bool $escape = true)

Indicate that the model's string representation should be escaped when __toString is invoked.

static void
proxy(string $method)

Add a method to the list of proxied methods.

mixed
__get(string $key)

Dynamically access collection proxies.

Details

TValue> toArray()

Get the collection of items as a plain array.

Return Value

TValue>

string toJson(int $options = 0)

Get the collection of items as JSON.

Parameters

int $options

Return Value

string

static TMakeValue> make(TMakeValue>|TMakeValue>|null $items = [])

Create a new collection instance if the value isn't one already.

Parameters

TMakeValue>|TMakeValue>|null $items

Return Value

TMakeValue>

static Enumerable times(int $number, callable|null $callback = null)

Create a new instance by invoking the callback a given amount of times.

Parameters

int $number
callable|null $callback

Return Value

Enumerable

static Enumerable range(int $from, int $to)

Create a collection with the given range.

Parameters

int $from
int $to

Return Value

Enumerable

static TWrapValue> wrap(TWrapValue>|TWrapValue $value)

Wrap the given value in a collection if applicable.

Parameters

TWrapValue>|TWrapValue $value

Return Value

TWrapValue>

static TUnwrapValue> unwrap(TUnwrapValue>|TUnwrapValue> $value)

Get the underlying items from the given collection if applicable.

Parameters

TUnwrapValue>|TUnwrapValue> $value

Return Value

TUnwrapValue>

static Enumerable empty()

Create a new instance with no items.

Return Value

Enumerable

array all()

Get all items in the enumerable.

Return Value

array

float|int|null average(TValue): float|int)|string|null $callback = null)

Alias for the "avg" method.

Parameters

TValue): float|int)|string|null $callback

Return Value

float|int|null

float|int|null median(string|array<array-key, string>|null $key = null)

Get the median of a given key.

Parameters

string|array<array-key, string>|null $key

Return Value

float|int|null

array<int, float|int>|null mode(string|array<array-key, string>|null $key = null)

Get the mode of a given key.

Parameters

string|array<array-key, string>|null $key

Return Value

array<int, float|int>|null

static<int, mixed> collapse()

Collapse the items into a single enumerable.

Return Value

static<int, mixed>

bool some(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Alias for the "contains" method.

Parameters

TKey): bool|TValue|string $key
mixed $operator
mixed $value

Return Value

bool

bool containsStrict(TValue): bool|TValue|(array-key) $key, TValue|null $value = null)

Determine if an item exists, using strict comparison.

Parameters

TValue): bool|TValue|(array-key) $key
TValue|null $value

Return Value

bool

float|int|null avg(TValue): float|int)|string|null $callback = null)

Get the average value of a given key.

Parameters

TValue): float|int)|string|null $callback

Return Value

float|int|null

bool contains(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Determine if an item exists in the enumerable.

Parameters

TKey): bool|TValue|string $key
mixed $operator
mixed $value

Return Value

bool

bool doesntContain(mixed $key, mixed $operator = null, mixed $value = null)

Determine if an item is not contained in the collection.

Parameters

mixed $key
mixed $operator
mixed $value

Return Value

bool

TValue|TCrossJoinValue>> crossJoin(TCrossJoinValue>|TCrossJoinValue> ...$lists)

Cross join with the given lists, returning all possible permutations.

Parameters

TCrossJoinValue>|TCrossJoinValue> ...$lists

Return Value

TValue|TCrossJoinValue>>

never dd(mixed ...$args)

Dump the collection and end the script.

Parameters

mixed ...$args

Return Value

never

$this dump(mixed ...$args)

Dump the collection.

Parameters

mixed ...$args

Return Value

$this

Enumerable diff(TValue>|TValue> $items)

Get the items that are not present in the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

Enumerable diffUsing(TValue>|TValue> $items, callable $callback)

Get the items that are not present in the given items, using the callback.

Parameters

TValue>|TValue> $items
callable $callback

Return Value

Enumerable

Enumerable diffAssoc(TValue>|TValue> $items)

Get the items whose keys and values are not present in the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

Enumerable diffAssocUsing(TValue>|TValue> $items, callable $callback)

Get the items whose keys and values are not present in the given items, using the callback.

Parameters

TValue>|TValue> $items
callable $callback

Return Value

Enumerable

Enumerable diffKeys(TKey, mixed>|TKey, mixed> $items)

Get the items whose keys are not present in the given items.

Parameters

TKey, mixed>|TKey, mixed> $items

Return Value

Enumerable

Enumerable diffKeysUsing(TKey, mixed>|TKey, mixed> $items, callable $callback)

Get the items whose keys are not present in the given items, using the callback.

Parameters

TKey, mixed>|TKey, mixed> $items
callable $callback

Return Value

Enumerable

Enumerable duplicates(TValue): bool|string|null $callback = null, bool $strict = false)

Retrieve duplicate items.

Parameters

TValue): bool|string|null $callback
bool $strict

Return Value

Enumerable

Enumerable duplicatesStrict(TValue): bool|string|null $callback = null)

Retrieve duplicate items using strict comparison.

Parameters

TValue): bool|string|null $callback

Return Value

Enumerable

$this each(callable $callback)

Execute a callback over each item.

Parameters

callable $callback

Return Value

$this

Enumerable eachSpread(callable $callback)

Execute a callback over each nested chunk of items.

Parameters

callable $callback

Return Value

Enumerable

bool every(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Determine if all items pass the given truth test.

Parameters

TKey): bool|TValue|string $key
mixed $operator
mixed $value

Return Value

bool

Enumerable except(TKey>|TKey> $keys)

Get all items except for those with the specified keys.

Parameters

TKey>|TKey> $keys

Return Value

Enumerable

Enumerable filter(callable|null $callback = null)

Run a filter over each of the items.

Parameters

callable|null $callback

Return Value

Enumerable

$this|TWhenReturnType when(bool $value, callable|null $callback = null, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) truthy.

Parameters

bool $value
callable|null $callback
callable|null $default

Return Value

$this|TWhenReturnType

$this|TWhenEmptyReturnType whenEmpty(callable $callback, callable|null $default = null)

Apply the callback if the collection is empty.

Parameters

callable $callback
callable|null $default

Return Value

$this|TWhenEmptyReturnType

$this|TWhenNotEmptyReturnType whenNotEmpty(callable $callback, callable|null $default = null)

Apply the callback if the collection is not empty.

Parameters

callable $callback
callable|null $default

Return Value

$this|TWhenNotEmptyReturnType

$this|TUnlessReturnType unless(bool $value, callable $callback, callable|null $default = null)

Apply the callback if the given "value" is (or resolves to) falsy.

Parameters

bool $value
callable $callback
callable|null $default

Return Value

$this|TUnlessReturnType

$this|TUnlessEmptyReturnType unlessEmpty(callable $callback, callable|null $default = null)

Apply the callback unless the collection is empty.

Parameters

callable $callback
callable|null $default

Return Value

$this|TUnlessEmptyReturnType

$this|TUnlessNotEmptyReturnType unlessNotEmpty(callable $callback, callable|null $default = null)

Apply the callback unless the collection is not empty.

Parameters

callable $callback
callable|null $default

Return Value

$this|TUnlessNotEmptyReturnType

Enumerable where(string $key, mixed $operator = null, mixed $value = null)

Filter items by the given key value pair.

Parameters

string $key
mixed $operator
mixed $value

Return Value

Enumerable

Enumerable whereNull(string|null $key = null)

Filter items where the value for the given key is null.

Parameters

string|null $key

Return Value

Enumerable

Enumerable whereNotNull(string|null $key = null)

Filter items where the value for the given key is not null.

Parameters

string|null $key

Return Value

Enumerable

Enumerable whereStrict(string $key, mixed $value)

Filter items by the given key value pair using strict comparison.

Parameters

string $key
mixed $value

Return Value

Enumerable

Enumerable whereIn(string $key, Arrayable|iterable $values, bool $strict = false)

Filter items by the given key value pair.

Parameters

string $key
Arrayable|iterable $values
bool $strict

Return Value

Enumerable

Enumerable whereInStrict(string $key, Arrayable|iterable $values)

Filter items by the given key value pair using strict comparison.

Parameters

string $key
Arrayable|iterable $values

Return Value

Enumerable

Enumerable whereBetween(string $key, Arrayable|iterable $values)

Filter items such that the value of the given key is between the given values.

Parameters

string $key
Arrayable|iterable $values

Return Value

Enumerable

Enumerable whereNotBetween(string $key, Arrayable|iterable $values)

Filter items such that the value of the given key is not between the given values.

Parameters

string $key
Arrayable|iterable $values

Return Value

Enumerable

Enumerable whereNotIn(string $key, Arrayable|iterable $values, bool $strict = false)

Filter items by the given key value pair.

Parameters

string $key
Arrayable|iterable $values
bool $strict

Return Value

Enumerable

Enumerable whereNotInStrict(string $key, Arrayable|iterable $values)

Filter items by the given key value pair using strict comparison.

Parameters

string $key
Arrayable|iterable $values

Return Value

Enumerable

TWhereInstanceOf> whereInstanceOf(TWhereInstanceOf>|TWhereInstanceOf>> $type)

Filter the items, removing any items that don't match the given type(s).

Parameters

TWhereInstanceOf>|TWhereInstanceOf>> $type

Return Value

TWhereInstanceOf>

TValue|TFirstDefault first(callable|null $callback = null, TFirstDefault|TFirstDefault $default = null)

Get the first item from the enumerable passing the given truth test.

Parameters

callable|null $callback
TFirstDefault|TFirstDefault $default

Return Value

TValue|TFirstDefault

TValue|null firstWhere(string $key, mixed $operator = null, mixed $value = null)

Get the first item by the given key value pair.

Parameters

string $key
mixed $operator
mixed $value

Return Value

TValue|null

Enumerable flatten(int $depth = INF)

Get a flattened array of the items in the collection.

Parameters

int $depth

Return Value

Enumerable

TKey> flip()

Flip the values with their keys.

Return Value

TKey>

TValue|TGetDefault get(TKey $key, TGetDefault|TGetDefault $default = null)

Get an item from the collection by key.

Parameters

TKey $key
TGetDefault|TGetDefault $default

Return Value

TValue|TGetDefault

TValue)>> groupBy(TGroupKey|array|string $groupBy, bool $preserveKeys = false)

Group an associative array by a field or using a callback.

Parameters

TGroupKey|array|string $groupBy
bool $preserveKeys

Return Value

TValue)>>

TValue> keyBy(TNewKey|array|string $keyBy)

Key an associative array by a field or using a callback.

Parameters

TNewKey|array|string $keyBy

Return Value

TValue>

bool has(TKey|TKey> $key)

Determine if an item exists in the collection by key.

Parameters

TKey|TKey> $key

Return Value

bool

bool hasAny(mixed $key)

Determine if any of the keys exist in the collection.

Parameters

mixed $key

Return Value

bool

string implode(TKey): mixed|string $value, string|null $glue = null)

Concatenate values of a given key as a string.

Parameters

TKey): mixed|string $value
string|null $glue

Return Value

string

Enumerable intersect(TValue>|TValue> $items)

Intersect the collection with the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

Enumerable intersectUsing(TValue>|TValue> $items, callable $callback)

Intersect the collection with the given items, using the callback.

Parameters

TValue>|TValue> $items
callable $callback

Return Value

Enumerable

Enumerable intersectAssoc(TValue>|TValue> $items)

Intersect the collection with the given items with additional index check.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

Enumerable intersectAssocUsing(TValue>|TValue> $items, callable $callback)

Intersect the collection with the given items with additional index check, using the callback.

Parameters

TValue>|TValue> $items
callable $callback

Return Value

Enumerable

Enumerable intersectByKeys(TKey, mixed>|TKey, mixed> $items)

Intersect the collection with the given items by key.

Parameters

TKey, mixed>|TKey, mixed> $items

Return Value

Enumerable

bool isEmpty()

Determine if the collection is empty or not.

Return Value

bool

bool isNotEmpty()

Determine if the collection is not empty.

Return Value

bool

bool containsOneItem()

Determine if the collection contains a single item.

Return Value

bool

string join(string $glue, string $finalGlue = '')

Join all items from the collection using a string. The final items can use a separate glue string.

Parameters

string $glue
string $finalGlue

Return Value

string

TKey> keys()

Get the keys of the collection items.

Return Value

TKey>

TValue|TLastDefault last(callable|null $callback = null, TLastDefault|TLastDefault $default = null)

Get the last item from the collection.

Parameters

callable|null $callback
TLastDefault|TLastDefault $default

Return Value

TValue|TLastDefault

TMapValue> map(callable $callback)

Run a map over each of the items.

Parameters

callable $callback

Return Value

TMapValue>

Enumerable mapSpread(callable $callback)

Run a map over each nested chunk of items.

Parameters

callable $callback

Return Value

Enumerable

TMapToDictionaryValue>> mapToDictionary(callable $callback)

Run a dictionary map over the items.

The callback should return an associative array with a single key/value pair.

Parameters

callable $callback

Return Value

TMapToDictionaryValue>>

TMapToGroupsValue>> mapToGroups(callable $callback)

Run a grouping map over the items.

The callback should return an associative array with a single key/value pair.

Parameters

callable $callback

Return Value

TMapToGroupsValue>>

TMapWithKeysValue> mapWithKeys(callable $callback)

Run an associative map over each of the items.

The callback should return an associative array with a single key/value pair.

Parameters

callable $callback

Return Value

TMapWithKeysValue>

TFlatMapValue> flatMap(callable $callback)

Map a collection and flatten the result by a single level.

Parameters

callable $callback

Return Value

TFlatMapValue>

TMapIntoValue> mapInto(TMapIntoValue> $class)

Map the values into a new class.

Parameters

TMapIntoValue> $class

Return Value

TMapIntoValue>

Enumerable merge(TValue>|TValue> $items)

Merge the collection with the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

TValue|TMergeRecursiveValue> mergeRecursive(TMergeRecursiveValue>|TMergeRecursiveValue> $items)

Recursively merge the collection with the given items.

Parameters

TMergeRecursiveValue>|TMergeRecursiveValue> $items

Return Value

TValue|TMergeRecursiveValue>

TCombineValue> combine(TCombineValue>|TCombineValue> $values)

Create a collection by using this collection for keys and another for its values.

Parameters

TCombineValue>|TCombineValue> $values

Return Value

TCombineValue>

Enumerable union(TValue>|TValue> $items)

Union the collection with the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

mixed min(TValue): mixed|string|null $callback = null)

Get the min value of a given key.

Parameters

TValue): mixed|string|null $callback

Return Value

mixed

mixed max(TValue): mixed|string|null $callback = null)

Get the max value of a given key.

Parameters

TValue): mixed|string|null $callback

Return Value

mixed

Enumerable nth(int $step, int $offset = 0)

Create a new collection consisting of every n-th element.

Parameters

int $step
int $offset

Return Value

Enumerable

Enumerable only(TKey>|TKey>|string $keys)

Get the items with the specified keys.

Parameters

TKey>|TKey>|string $keys

Return Value

Enumerable

Enumerable forPage(int $page, int $perPage)

"Paginate" the collection by slicing it into a smaller collection.

Parameters

int $page
int $perPage

Return Value

Enumerable

TValue>> partition(TKey): bool|TValue|string $key, mixed $operator = null, mixed $value = null)

Partition the collection into two arrays using the given callback or key.

Parameters

TKey): bool|TValue|string $key
mixed $operator
mixed $value

Return Value

TValue>>

TKey|TValue|TConcatValue> concat(TConcatValue> $source)

Push all of the given items onto the collection.

Parameters

TConcatValue> $source

Return Value

TKey|TValue|TConcatValue>

TValue>|TValue random(int|null $number = null)

Get one or a specified number of items randomly from the collection.

Parameters

int|null $number

Return Value

TValue>|TValue

Exceptions

InvalidArgumentException

TReduceInitial|TReduceReturnType reduce(callable $callback, TReduceInitial $initial = null)

Reduce the collection to a single value.

Parameters

callable $callback
TReduceInitial $initial

Return Value

TReduceInitial|TReduceReturnType

array reduceSpread(callable $callback, mixed ...$initial)

Reduce the collection to multiple aggregate values.

Parameters

callable $callback
mixed ...$initial

Return Value

array

Exceptions

UnexpectedValueException

Enumerable replace(TValue>|TValue> $items)

Replace the collection items with the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

Enumerable replaceRecursive(TValue>|TValue> $items)

Recursively replace the collection items with the given items.

Parameters

TValue>|TValue> $items

Return Value

Enumerable

Enumerable reverse()

Reverse items order.

Return Value

Enumerable

Search the collection for a given value and return the corresponding key if successful.

Parameters

TValue|TKey): bool $value
bool $strict

Return Value

TKey|bool

TValue|null before(TValue|TKey): bool $value, bool $strict = false)

Get the item before the given item.

Parameters

TValue|TKey): bool $value
bool $strict

Return Value

TValue|null

TValue|null after(TValue|TKey): bool $value, bool $strict = false)

Get the item after the given item.

Parameters

TValue|TKey): bool $value
bool $strict

Return Value

TValue|null

Enumerable shuffle()

Shuffle the items in the collection.

Return Value

Enumerable

static<int, static> sliding(int $size = 2, int $step = 1)

Create chunks representing a "sliding window" view of the items in the collection.

Parameters

int $size
int $step

Return Value

static<int, static>

Enumerable skip(int $count)

Skip the first {$count} items.

Parameters

int $count

Return Value

Enumerable

Enumerable skipUntil(TValue|TKey): bool $value)

Skip items in the collection until the given condition is met.

Parameters

TValue|TKey): bool $value

Return Value

Enumerable

Enumerable skipWhile(TValue|TKey): bool $value)

Skip items in the collection while the given condition is met.

Parameters

TValue|TKey): bool $value

Return Value

Enumerable

Enumerable slice(int $offset, int|null $length = null)

Get a slice of items from the enumerable.

Parameters

int $offset
int|null $length

Return Value

Enumerable

static<int, static> split(int $numberOfGroups)

Split a collection into a certain number of groups.

Parameters

int $numberOfGroups

Return Value

static<int, static>

TValue sole(TKey): bool|string $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.

Parameters

TKey): bool|string $key
mixed $operator
mixed $value

Return Value

TValue

Exceptions

ItemNotFoundException
MultipleItemsFoundException

TValue firstOrFail(TKey): bool|string $key = null, mixed $operator = null, mixed $value = null)

Get the first item in the collection but throw an exception if no matching items exist.

Parameters

TKey): bool|string $key
mixed $operator
mixed $value

Return Value

TValue

Exceptions

ItemNotFoundException

static<int, static> chunk(int $size)

Chunk the collection into chunks of the given size.

Parameters

int $size

Return Value

static<int, static>

TValue>> chunkWhile(callable $callback)

Chunk the collection into chunks with a callback.

Parameters

callable $callback

Return Value

TValue>>

static<int, static> splitIn(int $numberOfGroups)

Split a collection into a certain number of groups, and fill the first groups completely.

Parameters

int $numberOfGroups

Return Value

static<int, static>

Enumerable sort(TValue): int|null|int $callback = null)

Sort through each item with a callback.

Parameters

TValue): int|null|int $callback

Return Value

Enumerable

Enumerable sortDesc(int $options = SORT_REGULAR)

Sort items in descending order.

Parameters

int $options

Return Value

Enumerable

Enumerable sortBy(TValue): mixed|TKey): mixed|string|array{string, string}>|TKey): mixed|string $callback, int $options = SORT_REGULAR, bool $descending = false)

Sort the collection using the given callback.

Parameters

TValue): mixed|TKey): mixed|string|array{string, string}>|TKey): mixed|string $callback
int $options
bool $descending

Return Value

Enumerable

Enumerable sortByDesc(TValue): mixed|TKey): mixed|string|array{string, string}>|TKey): mixed|string $callback, int $options = SORT_REGULAR)

Sort the collection in descending order using the given callback.

Parameters

TValue): mixed|TKey): mixed|string|array{string, string}>|TKey): mixed|string $callback
int $options

Return Value

Enumerable

Enumerable sortKeys(int $options = SORT_REGULAR, bool $descending = false)

Sort the collection keys.

Parameters

int $options
bool $descending

Return Value

Enumerable

Enumerable sortKeysDesc(int $options = SORT_REGULAR)

Sort the collection keys in descending order.

Parameters

int $options

Return Value

Enumerable

Enumerable sortKeysUsing(callable $callback)

Sort the collection keys using a callback.

Parameters

callable $callback

Return Value

Enumerable

mixed sum(TValue): mixed|string|null $callback = null)

Get the sum of the given values.

Parameters

TValue): mixed|string|null $callback

Return Value

mixed

Enumerable take(int $limit)

Take the first or last {$limit} items.

Parameters

int $limit

Return Value

Enumerable

Enumerable takeUntil(TValue|TKey): bool $value)

Take items in the collection until the given condition is met.

Parameters

TValue|TKey): bool $value

Return Value

Enumerable

Enumerable takeWhile(TValue|TKey): bool $value)

Take items in the collection while the given condition is met.

Parameters

TValue|TKey): bool $value

Return Value

Enumerable

$this tap(callable $callback)

Pass the collection to the given callback and then return it.

Parameters

callable $callback

Return Value

$this

TPipeReturnType pipe(callable $callback)

Pass the enumerable to the given callback and return the result.

Parameters

callable $callback

Return Value

TPipeReturnType

TPipeIntoValue pipeInto(TPipeIntoValue> $class)

Pass the collection into a new class.

Parameters

TPipeIntoValue> $class

Return Value

TPipeIntoValue

mixed pipeThrough(callable[] $pipes)

Pass the collection through a series of callable pipes and return the result.

Parameters

callable[] $pipes

Return Value

mixed

static<array-key, mixed> pluck(string|array<array-key, string> $value, string|null $key = null)

Get the values of a given key.

Parameters

string|array<array-key, string> $value
string|null $key

Return Value

static<array-key, mixed>

Enumerable reject(TKey): bool|bool|TValue $callback = true)

Create a collection of all elements that do not pass a given truth test.

Parameters

TKey): bool|bool|TValue $callback

Return Value

Enumerable

Enumerable undot()

Convert a flatten "dot" notation array into an expanded array.

Return Value

Enumerable

Enumerable unique(TKey): mixed|string|null $key = null, bool $strict = false)

Return only unique items from the collection array.

Parameters

TKey): mixed|string|null $key
bool $strict

Return Value

Enumerable

Enumerable uniqueStrict(TKey): mixed|string|null $key = null)

Return only unique items from the collection array using strict comparison.

Parameters

TKey): mixed|string|null $key

Return Value

Enumerable

TValue> values()

Reset the keys on the underlying array.

Return Value

TValue>

TValue|TPadValue> pad(int $size, TPadValue $value)

Pad collection to the specified length with a value.

Parameters

int $size
TPadValue $value

Return Value

TValue|TPadValue>

Traversable getIterator()

Get the values iterator.

Return Value

Traversable

int count()

Count the number of items in the collection.

Return Value

int

static<array-key, int> countBy(TKey): array-key|string|null $countBy = null)

Count the number of items in the collection by a field or using a callback.

Parameters

TKey): array-key|string|null $countBy

Return Value

static<array-key, int>

TValue|TZipValue>> zip(TZipValue>|TZipValue> $items)

Zip the collection together with one or more arrays.

e.g. new Collection([1, 2, 3])->zip([4, 5, 6]); => [[1, 4], [2, 5], [3, 6]]

Parameters

TZipValue>|TZipValue> $items

Return Value

TValue|TZipValue>>

TValue> collect()

Collect the values into a collection.

Return Value

TValue>

mixed jsonSerialize()

Convert the object into something JSON serializable.

Return Value

mixed

CachingIterator getCachingIterator(int $flags = CachingIterator::CALL_TOSTRING)

Get a CachingIterator instance.

Parameters

int $flags

Return Value

CachingIterator

string __toString()

Convert the collection to its string representation.

Return Value

string

$this escapeWhenCastingToString(bool $escape = true)

Indicate that the model's string representation should be escaped when __toString is invoked.

Parameters

bool $escape

Return Value

$this

static void proxy(string $method)

Add a method to the list of proxied methods.

Parameters

string $method

Return Value

void

mixed __get(string $key)

Dynamically access collection proxies.

Parameters

string $key

Return Value

mixed

Exceptions

Exception

Laravel Cloud is the best place to deploy Laravel, Nuxt, Express, Hono, Node.js, Bun, Go, Flask, Python, and more, with dedicated infrastructure available on AWS through Laravel Private Cloud.