Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function lumener() |
||
14 | { |
||
15 | // If you are using a Content Seucrity Policy, define it here |
||
16 | define("LUMENER_CSP", [["form-action" => "'self'"]]); |
||
17 | $controller = new \Lumener\Controllers\LumenerController($this->request); |
||
18 | $content = $controller->index(); |
||
19 | return view('admin.dashboard', ['content' => $content]); |
||
20 | } |
||
23 |