-
-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nova tabs compatibility #120
Comments
Hi! Nova tabs reworked their package quite a bit since v1 and it's no longer possible to easily support the Tabs package. It requires a lot of custom integration code, as they mutate the Panel a lot on the server side. If you want Tabs support, you can try to implement it and submit a PR. :) Thanks. |
I had a first pass at it and it requires a fair amount of rework. @stepanenko3 - in the mean time in my projects i've changed back to native Panels instead of tabs. |
@Tarpsvo - Just to check, is the tabbed UI in the screenshot for legacy versions only or is there native support for tabs now? |
Sorry about that - that is indeed an old screenshot from Nova V3. |
Any update on this? Would love to have tab support for this <3 |
I didn't get NovaTabs support and made my package nova-settings |
@stepanenko3 Oh, interesting! Is there an easy way to migrate usage of |
Of course function settings(string|null $section, string|null $key = null, string|null $default = null, string|null $env = null) Get settings('general', 'cart_link') Get all settings('general') Get settings(
section: 'general',
key: 'cart_link',
default: true,
env: 'production'
);
// OR
settings('general', 'cart_link', true, 'production'); |
I'll have a look at it, thanks @stepanenko3 |
Tabs are not displayed on the settings page
Tabs package eminiarts/nova-tabs
The text was updated successfully, but these errors were encountered: