/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/View
NameSizeModeActions
Compilers/-0755rm
Concerns/-0755rm
Engines/-0755rm
Middleware/-0755rm
AnonymousComponent.php11720644editdlrm
AppendableAttributeValue.php5200644editdlrm
Component.php77350644editdlrm
ComponentAttributeBag.php98590644editdlrm
composer.json10390644editdlrm
DynamicComponent.php47350644editdlrm
Factory.php144320644editdlrm
FileViewFinder.php73080644editdlrm
InvokableComponentVariable.php19950644editdlrm
LICENSE.md10750644editdlrm
View.php97370644editdlrm
ViewException.php8980644editdlrm
ViewFinderInterface.php14510644editdlrm
ViewName.php5230644editdlrm
ViewServiceProvider.php45700644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/View/AnonymousComponent.php (1172B)
view = $view; $this->data = $data; } /** * Get the view / view contents that represent the component. * * @return string */ public function render() { return $this->view; } /** * Get the data that should be supplied to the view. * * @return array */ public function data() { $this->attributes = $this->attributes ?: $this->newAttributeBag(); return array_merge( optional($this->data['attributes'] ?? null)->getAttributes() ?: [], $this->attributes->getAttributes(), $this->data, ['attributes' => $this->attributes] ); } }