Lukas Frey
Lukas Frey
Hi, please give me a heads up when the PR is ready to be reviewed and merged. I see you still do some changes to it. I converted it to...
Hello Leo, thanks again for the PR and sorry for taking so long! Didn't have time any sooner. So I tested it out locally and everything seems to be working...
> I haven't forgotten this PR. Just haven't had time yet to work on the docs and finish the icon change. No worries! I'll mark it as draft for now....
Hi, create a custom page for your Dashboard, extend the filament original dashboard and implement the mount function according to the documentation: ```php public function mount(): void { parent::mount(); $this->mountTutorial();...
Don't call `parent::mount()`. There's a typo in the docs.
Hi, sorry I don't quite understand the question. Can you elaborate more on what you're trying to do?
Hi, not an ideal solution, but for the time being you can remove the button that leads to the documentation: ```php $plugin->disableKnowledgeBasePanelButton(); ``` It will still be accessible for people...
You can however forbid access to the panel using the `canAccessPanel` method of your User model. Just return false for the Knowledge Base panel.
Hi, a PR for that is welcome. Each documentation file is already implemented like a sushi eloquent model, so it shouldn't be too hard to implement an additional real database...
Hello, yes, help is very welcome! There's a Database Model in the source already, but that's about all.