loadMigrationsFrom([realpath(__DIR__ . '/../Database/migrations')]); $this->mergeConfigFrom(__DIR__ . '/../config.php', 'domain.account'); } /** * 注册一个服务提供者 * * @return void */ public function register() { $this->app->bind('auth:admin:check:account', function () { return new AuthAdminCheckAccount(); }); $this->app->tag(['auth:admin:check:account'], 'auth:admin:check'); $this->app->register(RouteServiceProvider::class); $this->app->register(MiddlewareServiceProvider::class); } }