Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Arcanesoft\Blog\Http\Routes\Foundation; |
||
23 | public function map(Registrar $router) |
||
24 | { |
||
25 | $this->group([ |
||
26 | 'prefix' => 'stats', |
||
27 | ], function () { |
||
28 | $this->get('/', [ |
||
29 | 'as' => 'dashboard', // blog::foundation.dashboard |
||
30 | 'uses' => 'DashboardController@index', |
||
31 | ]); |
||
32 | }); |
||
33 | } |
||
34 | } |
||
35 |