Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | public function getInputNameAttribute() { |
||
13 | if ($this->isRepeating) { |
||
14 | return $this->parent()->input_name . '[' . $this->key . '][' . $this->content()['name'] . ']'; |
||
15 | } |
||
16 | |||
17 | if ($this->inFieldSet) { |
||
18 | return $this->parent()->input_name . '[' . $this->content()['name'] . ']'; |
||
19 | } |
||
20 | |||
21 | return $this->content()['name']; |
||
22 | } |
||
57 | } |