1 | <?php namespace Arcanesoft\Foundation\Http\Routes\Admin; |
||
12 | class SystemRoutes extends RouteRegister |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Main Functions |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** |
||
19 | * Map routes. |
||
20 | * |
||
21 | * @param \Illuminate\Contracts\Routing\Registrar $router |
||
22 | */ |
||
23 | 12 | public function map(Registrar $router) |
|
31 | |||
32 | /* ------------------------------------------------------------------------------------------------ |
||
33 | | Other Functions |
||
34 | | ------------------------------------------------------------------------------------------------ |
||
35 | */ |
||
36 | /** |
||
37 | * Register the system information routes. |
||
38 | */ |
||
39 | 12 | private function registerSystemInformationRoutes() |
|
46 | |||
47 | /** |
||
48 | * Register LogViewer routes. |
||
49 | */ |
||
50 | 12 | private function registerLogViewerRoutes() |
|
76 | |||
77 | /** |
||
78 | * Register the route viewer routes. |
||
79 | */ |
||
80 | private function registerRouteViewerRoutes() |
||
87 | } |
||
88 |