/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Http/Resources
NameSizeModeActions
Json/-0755rm
CollectsResources.php17980644editdlrm
ConditionallyLoadsAttributes.php67120644editdlrm
DelegatesToResource.php32590644editdlrm
MergeValue.php6750644editdlrm
MissingValue.php2690644editdlrm
PotentiallyMissing.php2170644editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Http/Resources/CollectsResources.php (1798B)
collects(); $this->collection = $collects && ! $resource->first() instanceof $collects ? $resource->mapInto($collects) : $resource->toBase(); return ($resource instanceof AbstractPaginator || $resource instanceof AbstractCursorPaginator) ? $resource->setCollection($this->collection) : $this->collection; } /** * Get the resource that this resource collects. * * @return string|null */ protected function collects() { if ($this->collects) { return $this->collects; } if (Str::endsWith(class_basename($this), 'Collection') && (class_exists($class = Str::replaceLast('Collection', '', get_class($this))) || class_exists($class = Str::replaceLast('Collection', 'Resource', get_class($this))))) { return $class; } } /** * Get an iterator for the resource collection. * * @return \ArrayIterator */ #[\ReturnTypeWillChange] public function getIterator() { return $this->collection->getIterator(); } }