1 | <?php namespace Arcanesoft\Media\Providers; |
||
8 | class RouteServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /* ------------------------------------------------------------------------------------------------ |
||
11 | | Getters & Setters |
||
12 | | ------------------------------------------------------------------------------------------------ |
||
13 | */ |
||
14 | /** |
||
15 | * Get the routes namespace |
||
16 | * |
||
17 | * @return string |
||
18 | */ |
||
19 | protected function getRouteNamespace() |
||
23 | |||
24 | /** |
||
25 | * Get the auth foundation route prefix. |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | 8 | public function getFoundationAuthPrefix() |
|
35 | |||
36 | /* ------------------------------------------------------------------------------------------------ |
||
37 | | Main Functions |
||
38 | | ------------------------------------------------------------------------------------------------ |
||
39 | */ |
||
40 | /** |
||
41 | * Define the routes for the application. |
||
42 | * |
||
43 | * @param \Illuminate\Contracts\Routing\Registrar $router |
||
44 | */ |
||
45 | 8 | public function map(Router $router) |
|
49 | |||
50 | /** |
||
51 | * Register the admin routes. |
||
52 | * |
||
53 | * @param \Illuminate\Contracts\Routing\Registrar $router |
||
54 | */ |
||
55 | 8 | private function mapAdminRoutes(Router $router) |
|
69 | } |
||
70 |