/home/techb158/exp.abdallabala.com/vendor/illuminate/support
NameSizeModeActions
Facades/-0755rm
Testing/-0755rm
Traits/-0755rm
AggregateServiceProvider.php9950644editdlrm
Arr.php153630644editdlrm
Carbon.php1150644editdlrm
Collection.php529540644editdlrm
composer.json14870644editdlrm
Composer.php23900644editdlrm
ConfigurationUrlParser.php42540644editdlrm
DateFactory.php80010644editdlrm
Fluent.php38830644editdlrm
helpers.php322410644editdlrm
HigherOrderCollectionProxy.php14080644editdlrm
HigherOrderTapProxy.php6650644editdlrm
HtmlString.php6990644editdlrm
InteractsWithTime.php15880644editdlrm
LICENSE.md10750644editdlrm
Manager.php35670644editdlrm
MessageBag.php93840644editdlrm
NamespacedItemResolver.php32700644editdlrm
Optional.php26410644editdlrm
Pluralizer.php25220644editdlrm
ProcessUtils.php20500644editdlrm
ServiceProvider.php77380644editdlrm
Str.php252870644editdlrm
ViewErrorBag.php26220644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/illuminate/support/HigherOrderCollectionProxy.php (1408B)
method = $method; $this->collection = $collection; } /** * Proxy accessing an attribute onto the collection items. * * @param string $key * @return mixed */ public function __get($key) { return $this->collection->{$this->method}(function ($value) use ($key) { return is_array($value) ? $value[$key] : $value->{$key}; }); } /** * Proxy a method call onto the collection items. * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { return $this->collection->{$this->method}(function ($value) use ($method, $parameters) { return $value->{$method}(...$parameters); }); } }