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