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