for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Loadsman\LaravelPlugin\Modules\Framework;
use Illuminate\Routing\Router;
class FrameworkServiceProvider extends \Illuminate\Support\ServiceProvider
{
public function register()
}
public function boot(Router $router)
$router->group([
'prefix' => 'loadsman/framework',
], function ($router) {
$router->exposeAll(FrameworkController::class);
});