bambamboole / nova-settings
This package is abandoned and no longer maintained.
No replacement package was suggested.
A Laravel Nova tool.
v0.2
2019-07-06 14:38 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2026-03-04 10:23:10 UTC
README
Add Settings via code and edit with Nova.
Requirements
- Laravel Nova
Installation
composer require bambamboole/nova-settings
Usage
After installing the tool you need to add it to your nova tools.
public function tools() { return [ //... new \Bambamboole\NovaSettings\NovaSettings(), //... ]; }
Now you can add Sections and Fields in your Service Providers boot method.
public function boot() { $settingsManager = $this->app->get(NovaSettingsManager::class); $settingsManager->addSection('Company', 'Details about the company'); $settingsManager->addField('Company Name', 'text', 'company', 'the full company name'); }
Current possible types are text and time.
Roadmap
- Native Nova Fields
- Validation
- Scopes


