PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportAttributes
/
Editing: HandlesAttributes.php
<?php namespace Livewire\Features\SupportAttributes; trait HandlesAttributes { protected AttributeCollection $attributes; function getAttributes() { return $this->attributes ??= AttributeCollection::fromComponent($this); } function setPropertyAttribute($property, $attribute) { $attribute->__boot($this, AttributeLevel::PROPERTY, $property); $this->mergeOutsideAttributes(new AttributeCollection([$attribute])); } function mergeOutsideAttributes(AttributeCollection $attributes) { $this->attributes = $this->getAttributes()->concat($attributes); } }
SAVE
CANCEL