Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function index(): View |
||
27 | { |
||
28 | return view( |
||
29 | config('recomposer.view', 'solumdesignum/recomposer::index'), |
||
30 | [ |
||
31 | 'packages' => $this->recomposer->packages, |
||
32 | 'laravelEnv' => $this->recomposer->laravelEnvironment(), |
||
33 | 'serverEnv' => $this->recomposer->serverEnvironment(), |
||
34 | 'serverExtras' => $this->recomposer->serverExtras(), |
||
35 | 'laravelExtras' => $this->recomposer->laravelExtras(), |
||
36 | 'extraStats' => $this->recomposer->extraStats(), |
||
37 | 'iconCheck' => config('recomposer.icon.check'), |
||
38 | 'iconUncheck' => config('recomposer.icon.uncheck'), |
||
39 | ] |
||
43 |