Conditions | 4 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
58 | public function render($row) |
||
59 | { |
||
60 | if ($this->display === false) { |
||
61 | return view('grid_view::columns.checkbox-stub')->render(); |
||
62 | } |
||
63 | |||
64 | if (is_callable($this->display) && !call_user_func($this->display, $row)) { |
||
65 | return view('grid_view::columns.checkbox-stub')->render(); |
||
66 | } |
||
67 | |||
68 | return view('grid_view::columns.checkbox', [ |
||
69 | 'field' => $this->field, |
||
70 | 'value' => $this->getValue($row), |
||
71 | ])->render(); |
||
72 | } |
||
74 |