1 | <?php namespace Arcanesoft\Tracker\Providers; |
||
14 | class RouteServiceProvider extends ServiceProvider |
||
15 | { |
||
16 | /* ------------------------------------------------------------------------------------------------ |
||
17 | | Getters & Setters |
||
18 | | ------------------------------------------------------------------------------------------------ |
||
19 | */ |
||
20 | /** |
||
21 | * Get the routes namespace |
||
22 | * |
||
23 | * @return string |
||
24 | */ |
||
25 | protected function getRouteNamespace() |
||
29 | |||
30 | /** |
||
31 | * Get the auth foundation route prefix. |
||
32 | * |
||
33 | * @return string |
||
34 | */ |
||
35 | 4 | public function getFoundationAuthPrefix() |
|
41 | |||
42 | /* ------------------------------------------------------------------------------------------------ |
||
43 | | Main Functions |
||
44 | | ------------------------------------------------------------------------------------------------ |
||
45 | */ |
||
46 | /** |
||
47 | * Define the routes for the application. |
||
48 | * |
||
49 | * @param \Illuminate\Contracts\Routing\Registrar $router |
||
50 | */ |
||
51 | 4 | public function map(Router $router) |
|
55 | |||
56 | /** |
||
57 | * Register the admin routes. |
||
58 | * |
||
59 | * @param \Illuminate\Contracts\Routing\Registrar $router |
||
60 | */ |
||
61 | 4 | private function mapAdminRoutes(Router $router) |
|
75 | } |
||
76 |