/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Collections
NameSizeModeActions
Traits/-0755rm
Arr.php172920644editdlrm
Collection.php362250644editdlrm
composer.json9870644editdlrm
Enumerable.php243690644editdlrm
helpers.php48170644editdlrm
HigherOrderCollectionProxy.php14080644editdlrm
HigherOrderWhenProxy.php13070644editdlrm
ItemNotFoundException.php1220644editdlrm
LazyCollection.php364790644editdlrm
LICENSE.md10750644editdlrm
MultipleItemsFoundException.php1280644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Collections/Enumerable.php (24369B)
zip([4, 5, 6]); * => [[1, 4], [2, 5], [3, 6]] * * @param mixed ...$items * @return static */ public function zip($items); /** * Collect the values into a collection. * * @return \Illuminate\Support\Collection */ public function collect(); /** * Convert the collection to its string representation. * * @return string */ public function __toString(); /** * Add a method to the list of proxied methods. * * @param string $method * @return void */ public static function proxy($method); /** * Dynamically access collection proxies. * * @param string $key * @return mixed * * @throws \Exception */ public function __get($key); }