Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 12 |
Ratio | 100 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
21 | 1 | View Code Duplication | public function getListView($model) |
22 | { |
||
23 | 1 | $template = 'list'; |
|
24 | 1 | if ($this->isTranslatable()) { |
|
25 | $template .= '_translatable'; |
||
26 | } |
||
27 | |||
28 | 1 | return view('jarboe::crud.fields.markdown.'. $template, [ |
|
29 | 1 | 'model' => $model, |
|
30 | 1 | 'field' => $this, |
|
31 | ]); |
||
32 | } |
||
33 | |||
51 |