Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function map(Registrar $router) |
||
27 | { |
||
28 | $router->group([ |
||
29 | 'middleware' => ['app.hasSetting'], |
||
30 | 'setting' => 'app_name', |
||
31 | 'as' => 'admin.', |
||
32 | ], function ($router) { |
||
33 | $router->get('admin', [ |
||
34 | 'as' => 'index', |
||
35 | 'uses' => 'Admin\\DashboardController@index', |
||
36 | ]); |
||
37 | |||
38 | |||
39 | }); |
||
40 | } |
||
41 | } |