for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Modules\Block\Providers;
use Modules\Core\Providers\RoutingServiceProvider as CoreRoutingServiceProvider;
class RouteServiceProvider extends CoreRoutingServiceProvider
{
/**
* The root namespace to assume when generating URLs to actions.
* @var string
*/
protected $namespace = 'Modules\Block\Http\Controllers';
* @return string
protected function getFrontendRoute()
return false;
}
protected function getBackendRoute()
return __DIR__ . '/../Http/backendRoutes.php';
protected function getApiRoute()