/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/View
NameSizeModeActions
Compilers/-0755rm
Concerns/-0755rm
Engines/-0755rm
Middleware/-0755rm
AnonymousComponent.php11720644editdlrm
AppendableAttributeValue.php5200644editdlrm
Component.php77350644editdlrm
ComponentAttributeBag.php100420644editdlrm
ComponentSlot.php16000644editdlrm
composer.json10390644editdlrm
DynamicComponent.php47680644editdlrm
Factory.php144660755editdlrm
FileViewFinder.php73080755editdlrm
InvokableComponentVariable.php20240644editdlrm
LICENSE.md10750644editdlrm
View.php98470755editdlrm
ViewException.php8980644editdlrm
ViewFinderInterface.php14510755editdlrm
ViewName.php5230644editdlrm
ViewServiceProvider.php45700755editdlrm
Edit: /var/www/flurhymez/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] ); } }