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 | public function map() |
||
42 | |||
43 | /* ----------------------------------------------------------------- |
||
44 | | Other Methods |
||
45 | | ----------------------------------------------------------------- |
||
46 | */ |
||
47 | |||
48 | /** |
||
49 | * Register the route bindings. |
||
50 | */ |
||
51 | 16 | protected function registerRouteBindings() |
|
58 | |||
59 | /** |
||
60 | * Map the admin routes. |
||
61 | */ |
||
62 | 16 | protected function mapAdminRoutes() |
|
76 | |||
77 | /** |
||
78 | * Map the public routes. |
||
79 | */ |
||
80 | 16 | protected function mapPublicRoutes() |
|
84 | } |
||
85 |