Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function toArray($request) |
||
19 | { |
||
20 | return [ |
||
21 | 'checkbox' => view('components.datatables.checkbox', [ |
||
22 | 'id' => 'configuration_' . $this->resource->getKey(), |
||
23 | ])->render(), |
||
24 | 'key' => $this->resource->key, |
||
25 | 'value' => $this->resource->value, |
||
26 | 'description' => $this->resource->description, |
||
27 | 'action' => view('components.datatables.link', [ |
||
28 | 'url' => route('configuration.edit', $this->resource), |
||
29 | 'name' => __('Details'), |
||
30 | 'class' => 'btn btn-primary', |
||
31 | ])->render(), |
||
32 | ]; |
||
35 |