Laravel Collection Public API: get
get($key, $default = null) The get method can be used to retrieve an item from the collection based of its $key . An optional $default argument can be passed that will be returned if the given $key does not exists in the collection. The $default...