LaravelPackages.net
Acme Inc.
Toggle sidebar
elipzis/laravel-nova-simple-setting

Laravel Nova Resource for a simple key/value typed setting

147
6
v0.3.1
About elipzis/laravel-nova-simple-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

Laravel Nova Resource for a simple key/value typed setting

Latest Version on Packagist Total Downloads

Administer your Laravel Simple Setting in Nova

Pre-requisites

This Nova resource package requires:

Installation

You can install the package via composer:

composer require elipzis/laravel-nova-simple-setting

Usage

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
        ]);
    }

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments