We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682987a commit ad537ffCopy full SHA for ad537ff
src/Bounds/BoundWidget.php
@@ -13,6 +13,7 @@ class BoundWidget
13
public $name;
14
public $value;
15
public $label;
16
+ public $attrs;
17
18
public function __construct(array $data)
19
{
@@ -21,6 +22,7 @@ public function __construct(array $data)
21
22
$this->name = $data["name"];
23
$this->value = $data["value"];
24
$this->label = $data["label"];
25
+ $this->attrs = $data["attrs"];
26
$this->template = $data["template"];
27
28
unset($data["template"]);
0 commit comments