bp->a(); $b = $this->bp->b(); $c = $this->bp->c(); return $this->view->make( 'admin.extensions.blueprint.index', [ 'version' => $this->version, 'bp' => $this->bp, 'root' => "/admin/extensions/blueprint", 'a' => $a, 'b' => $b, 'c' => $c, ] ); } /** * @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'); } }