| 1 | <?php |
||
| 7 | class RouteServiceProvider extends CoreRoutingServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The root namespace to assume when generating URLs to actions. |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $namespace = 'Modules\Block\Http\Controllers'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | protected function getFrontendRoute() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | protected function getBackendRoute() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | protected function getApiRoute() |
||
| 38 | } |
||
| 39 |