Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
34 | 1 | View Code Duplication | public function getEditFormView($model) |
35 | { |
||
36 | 1 | $template = $this->isReadonly() ? 'readonly' : 'edit'; |
|
37 | |||
38 | 1 | return view('jarboe::crud.fields.markdown.'. $template, [ |
|
39 | 1 | 'model' => $model, |
|
40 | 1 | 'field' => $this, |
|
41 | ]); |
||
42 | } |
||
43 | |||
51 |