Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class Show extends BaseButton |
||
10 | { |
||
11 | /** |
||
12 | * @return array|string |
||
13 | * @throws \Throwable |
||
14 | */ |
||
15 | public function render($row) |
||
16 | { |
||
17 | return view('churakovmike_easygrid::actions.show', [ |
||
18 | 'url' => $this->getUrl($row), |
||
19 | ])->render(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Build link to edit page. |
||
24 | * |
||
25 | * @param $row |
||
26 | * @return string |
||
27 | */ |
||
28 | public function buildUrl($row) |
||
31 | } |
||
32 | } |
||
33 |