| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | 2 | public function render($model = null) |
|
| 10 | { |
||
| 11 | 2 | $crud = $this->crud(); |
|
| 12 | 2 | $isVisible = parent::shouldRender($model); |
|
| 13 | 2 | if ($crud->isSoftDeleteEnabled()) { |
|
| 14 | 1 | $isVisible = !$model->trashed(); |
|
| 15 | } |
||
| 16 | |||
| 17 | 2 | return view('jarboe::crud.actions.delete', compact('crud', 'model', 'isVisible')); |
|
| 18 | } |
||
| 19 | |||
| 39 |