1 | <?php namespace Arcanesoft\Blog\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\\Blog\\Http\\Controllers\\Admin'; |
||
25 | |||
26 | /* ----------------------------------------------------------------- |
||
27 | | Main Methods |
||
28 | | ----------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | /** |
||
32 | * Register the route bindings. |
||
33 | */ |
||
34 | 102 | protected function registerRouteBindings() |
|
40 | |||
41 | /** |
||
42 | * Define the routes for the application. |
||
43 | */ |
||
44 | public function map() |
||
50 | |||
51 | /** |
||
52 | * Define the admin routes for the application. |
||
53 | */ |
||
54 | 102 | private function mapAdminRoutes() |
|
66 | } |
||
67 |