Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | 2 | public function getOrder() |
|
13 | { |
||
14 | 2 | $rows = $this->model->orderBy($this->model->orderFieldName(), 'asc')->get(); |
|
15 | |||
16 | 2 | $this->layoutManager->add([ |
|
17 | 2 | 'content' => view('expendable::admin.form.state.order', [ |
|
18 | 2 | 'rows' => $rows, |
|
19 | ]), |
||
20 | ]); |
||
21 | |||
22 | 2 | return $this->layoutManager->render(); |
|
23 | } |
||
45 |