12345678910111213141516171819202122232425262728 |
- <?php
- $router->group('total', function () use ($router){
- $router->get('getHomePageCountData','\catchAdmin\report\controller\Report@homePageCountData');
- $router->get('getStationGrowthTrendData','\catchAdmin\report\controller\Report@stationGrowthTrendData');
- $router->get('getDeviceGrowthTrendData','\catchAdmin\report\controller\Report@deviceGrowthTrendData');
- })->middleware('auth');
- $router->group('report', function () use ($router){
- $router->get('hydraulicCount','\catchAdmin\report\controller\Report@hydraulicCount');
-
- $router->get('alarmDeviceCount','\catchAdmin\report\controller\Report@alarmDeviceCount');
- $router->get('workCount','\catchAdmin\report\controller\Report@workCount');
-
- $router->get('maintainCount','\catchAdmin\report\controller\Report@maintainCount');
-
- })->middleware('auth');
|