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