| 1 | <?php namespace Arcanesoft\Pages\Providers; |
||
| 12 | class RouteServiceProvider extends ServiceProvider |
||
| 13 | { |
||
| 14 | /* ----------------------------------------------------------------- |
||
| 15 | | Properties |
||
| 16 | | ----------------------------------------------------------------- |
||
| 17 | */ |
||
| 18 | |||
| 19 | protected $adminNamespace = 'Arcanesoft\\Pages\\Http\\Controllers\\Admin'; |
||
| 20 | |||
| 21 | /* ----------------------------------------------------------------- |
||
| 22 | | Main Methods |
||
| 23 | | ----------------------------------------------------------------- |
||
| 24 | */ |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Define the routes for the application. |
||
| 28 | */ |
||
| 29 | 6 | public function map() |
|
| 35 | |||
| 36 | /* ----------------------------------------------------------------- |
||
| 37 | | Other Methods |
||
| 38 | | ----------------------------------------------------------------- |
||
| 39 | */ |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Register the route bindings. |
||
| 43 | */ |
||
| 44 | 6 | protected function registerRouteBindings() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * Define the admin routes for the application. |
||
| 51 | */ |
||
| 52 | 6 | protected function mapAdminRoutes() |
|
| 61 | } |
||
| 62 |