| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function renderField(Field $field) |
||
| 10 | { |
||
| 11 | return view($field->view(), array_merge([ |
||
|
|
|||
| 12 | 'field' => $field, |
||
| 13 | 'key' => $field->key(), // As parameter so that it can be altered for translatable values |
||
| 14 | 'manager' => $this, |
||
| 15 | 'formElementView' => $field->formElementView(), |
||
| 16 | ]), $field->viewData())->render(); |
||
| 17 | } |
||
| 23 | } |