loadMigrationsFrom([realpath(__DIR__ . '/../Database/migrations')]); // $this->app->make(EloquentFactory::class)->load(realpath(__DIR__ . '/../Database/factories')); // $this->mergeConfigFrom(realpath(__DIR__ . '/../config.php'), 'domain.company'); } /** * 注册一个服务提供者 * * @return void */ public function register() { $this->app->register(RouteServiceProvider::class); $this->app->register(MiddlewareServiceProvider::class); } }