DatabaseNotificationCollection::__callStatic()

static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

DatabaseNotificationCollection::__call()

mixed __call(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

DatabaseNotificationCollection::zip()

Collection zip(mixed $items) Zip the collection together with one or more arrays. Parameters mixed $items Return Value Collection

DatabaseNotificationCollection::whereStrict()

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

DatabaseNotificationCollection::whereInStrict()

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

DatabaseNotificationCollection::whereIn()

Collection whereIn(string $key, mixed $values, bool $strict = false) Filter items by the given key value pair. Parameters string $key mixed $values bool $strict Return Value Collection

DatabaseNotificationCollection::where()

Collection where(string $key, mixed $operator, mixed $value = null) Filter items by the given key value pair. Parameters string $key mixed $operator mixed $value Return Value Collection

DatabaseNotificationCollection::values()

Collection values() Reset the keys on the underlying array. Return Value Collection

DatabaseNotificationCollection::uniqueStrict()

Collection uniqueStrict(string|callable|null $key = null) Return only unique items from the collection array using strict comparison. Parameters string|callable|null $key Return Value Collection

DatabaseNotificationCollection::unique()

Collection unique(string|callable|null $key = null, bool $strict = false) Return only unique items from the collection. Parameters string|callable|null $key bool $strict Return Value Collection