static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException
mixed __call(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException
Collection zip(mixed $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 mixed $items Return Value Collection
Collection zip(mixed $items) Zip the collection together with one or more arrays. Parameters mixed $items Return Value Collection
Collection whereStrict(string $key, mixed $value) Filter items by the given key value pair using strict comparison. Parameters string $key mixed $value Return Value Collection
Collection whereInStrict(string $key, mixed $values) Filter items by the given key value pair using strict comparison. Parameters string $key mixed $values Return Value Collection
Page 833 of 996