bp->licenseIsValid(); return $this->view->make( 'admin.extensions.blueprint.index', [ 'version' => $this->version, 'bp' => $this->bp, 'root' => $rootPath, 'license' => $license ] ); } /** * @throws \Pterodactyl\Exceptions\Model\DataValidationException * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function update(BlueprintSettingsFormRequest $request): RedirectResponse { foreach ($request->normalize() as $key => $value) { $this->settings->set('blueprint::' . $key, $value); } //$this->kernel->call('queue:restart'); //$this->alert->success('Blueprint settings have updated successfully.')->flash(); return redirect()->route('admin.extensions.blueprint.index'); } }