On this page
Addons
Sky comes with some addons, currently we have:
- FAQ
- Library
FAQ Addons
to set the url of the FAQ from the zeus-sky.php
config file:
1'uri' => [2 // ...3 'faq' => 'faq',4],
to disable it in the admin, set it in the adminPanelProvider
:
1SkyPlugin::make()2 ->faqResource(false),
Library Addons
to set the url of the Library from the zeus-sky.php
config file:
1'uri' => [2 // ...3 'library' => 'library',4],
to disable it, set it in the adminPanelProvider
:
1SkyPlugin::make()2 ->libraryResource(false),