1 | <?php namespace Modules\Dashboard\Providers; |
||
5 | class RouteServiceProvider extends CoreRoutingServiceProvider |
||
6 | { |
||
7 | /** |
||
8 | * The root namespace to assume when generating URLs to actions. |
||
9 | * @var string |
||
10 | */ |
||
11 | protected $namespace = 'Modules\Dashboard\Http\Controllers'; |
||
12 | |||
13 | /** |
||
14 | * @return string |
||
15 | */ |
||
16 | protected function getFrontendRoute() |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | protected function getBackendRoute() |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | protected function getApiRoute() |
||
36 | } |
||
37 |