Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function getInputJsonNameAttribute() { |
||
30 | if ($this->isRepeating) { |
||
31 | return $this->parent()->input_name . '[' . $this->key . '][' . $this->content()['name'] . ']'; |
||
32 | } |
||
33 | |||
34 | if ($this->inFieldSet) { |
||
35 | return $this->parent()->name . '[' . $this->content()['name'] . ']'; |
||
36 | } |
||
37 | |||
38 | return $this->content()['name']; |
||
39 | } |
||
74 | } |