1 | <?php namespace Arcanesoft\Seo\Providers; |
||
12 | class RouteServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * The admin controller namespace for the application. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $adminNamespace = 'Arcanesoft\\Seo\\Http\\Controllers\\Admin'; |
||
25 | |||
26 | /* ----------------------------------------------------------------- |
||
27 | | Main Methods |
||
28 | | ----------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | /** |
||
32 | * Define the routes for the application. |
||
33 | */ |
||
34 | 32 | public function map() |
|
42 | |||
43 | /* ----------------------------------------------------------------- |
||
44 | | Other Methods |
||
45 | | ----------------------------------------------------------------- |
||
46 | */ |
||
47 | /** |
||
48 | * Register the route bindings. |
||
49 | */ |
||
50 | 32 | protected function registerRouteBindings() |
|
57 | |||
58 | /** |
||
59 | * Map the admin routes. |
||
60 | */ |
||
61 | 32 | protected function mapAdminRoutes() |
|
75 | |||
76 | /** |
||
77 | * Map the public routes. |
||
78 | */ |
||
79 | 32 | protected function mapPublicRoutes() |
|
83 | } |
||
84 |