Laravel Nova Resource for a simple key/value typed setting
elipzis/laravel-nova-simple-setting is a Laravel package for laravel nova resource for a simple key/value typed setting.
It currently has 6 GitHub stars and 147 downloads on Packagist (latest version v0.3.1).
Install it with composer require elipzis/laravel-nova-simple-setting.
Discover more Laravel packages by elipzis
or browse all Laravel packages to compare alternatives.
Last updated
Administer your Laravel Simple Setting in Nova
This Nova resource package requires:
You can install the package via composer:
composer require elipzis/laravel-nova-simple-setting
To add this resource to your Nova open the NovaServiceProvider.php and add it, e.g.
<?php
...
use ElipZis\Setting\Nova\Setting;
...
protected function resources()
{
parent::resources();
...
Nova::resources([
Setting::class
]);
}
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.