1 | <?php namespace Arcanesoft\Auth\Providers; |
||
12 | class RouteServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | protected $adminNamespace = 'Arcanesoft\\Auth\\Http\\Controllers\\Admin'; |
||
19 | |||
20 | /* ----------------------------------------------------------------- |
||
21 | | Main Methods |
||
22 | | ----------------------------------------------------------------- |
||
23 | */ |
||
24 | /** |
||
25 | * Define the routes for the application. |
||
26 | */ |
||
27 | 12 | public function map() |
|
36 | |||
37 | /** |
||
38 | * Define the foundation routes for the application. |
||
39 | */ |
||
40 | 12 | private function mapAdminRoutes() |
|
53 | } |
||
54 |