/home/techb158/exp.abdallabala.com/vendor/tightenco/collect/src/Collect/Support
NameSizeModeActions
Traits/-0755rm
alias.php10210644editdlrm
Arr.php153770644editdlrm
Collection.php529960644editdlrm
helpers.php31530644editdlrm
HigherOrderCollectionProxy.php14360644editdlrm
HtmlString.php7130644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/tightenco/collect/src/Collect/Support/helpers.php (3153B)
all(); } elseif (! is_array($target)) { return value($default); } $result = Arr::pluck($target, $key); return in_array('*', $key) ? Arr::collapse($result) : $result; } if (Arr::accessible($target) && Arr::exists($target, $segment)) { $target = $target[$segment]; } elseif (is_object($target) && isset($target->{$segment})) { $target = $target->{$segment}; } else { return value($default); } } return $target; } } if (! function_exists('with')) { /** * Return the given object. Useful for chaining. * * @param mixed $object * @return mixed */ function with($object) { return $object; } } if (! function_exists('dd')) { /** * Dump the passed variables and end the script. * * @param mixed * @return void */ function dd(...$args) { foreach ($args as $x) { VarDumper::dump($x); } die(1); } } }