PHPackages                             ferdiunal/nova-settings - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. ferdiunal/nova-settings

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ferdiunal/nova-settings
=======================

A Laravel Nova tool to manage settings

v1.0.12(1y ago)86666[4 issues](https://github.com/ferdiunal/nova-settings/issues)[1 PRs](https://github.com/ferdiunal/nova-settings/pulls)MITPHPPHP ^8.2

Since Jul 10Pushed 1y agoCompare

[ Source](https://github.com/ferdiunal/nova-settings)[ Packagist](https://packagist.org/packages/ferdiunal/nova-settings)[ Fund](https://buymeacoffee.com/ferdiunal)[ GitHub Sponsors](https://github.com/sponsors/ferdiunal)[ RSS](/packages/ferdiunal-nova-settings/feed)WikiDiscussions main Synced today

READMEChangelog (10)Dependencies (3)Versions (14)Used By (0)

Nova Settings
=============

[](#nova-settings)

**WIP: This project is a Work in Progress. Features and documentation might change.**

Nova Settings is a Laravel Nova package that provides an intuitive interface for managing settings using Spatie's settings package.

### Screenshots

[](#screenshots)

[![](./pictures/screenshot-0.png)](./pictures/screenshot-0.png)

[![](./pictures/screenshot-1.png)](./pictures/screenshot-1.png)

[![](./pictures/screenshot-2.png)](./pictures/screenshot-2.png)

### Installation

[](#installation)

To install Nova Settings, you can use Composer:

```
composer require ferdiunal/nova-settings
```

After installing the package, you need to register the tool with Nova. Add the following to your **NovaServiceProvider**:

```
// in app/Providers/NovaServiceProvider.php

use Ferdiunal\NovaSettings\NovaSettings;

public function tools()
{
    return [
        new NovaSettings,
    ];
}
```

### Create Settings Resource

[](#create-settings-resource)

```
php artisan make:settings-resource GeneralSettings --group General
# Resource created successfully.
# Resource path: app/NovaSettings/GeneralSettings.php
```

### Usage

[](#usage)

After installation, you can access the settings interface from the Nova dashboard. This interface allows you to easily manage your application's settings without writing any additional code.

To use the `SettingsHelper` class, you can utilize the provided `settings` helper function. Here are some examples:

```
use function Ferdiunal\NovaSettings\settings;

// Accessing all settings
$allSettings = settings()->toArray();

// Accessing settings as a collection
$settingsCollection = settings()->toCollection(); // OR
$settingsCollection = settings("general")->toCollection();

// Converting settings to JSON
$jsonSettings = settings()->toJson(); // OR
$jsonSettings = settings("general")->toJson();

// Accessing a specific group of settings
$generalSettings = settings('general')->toArray();

// Accessing a specific setting within a group
$specificSetting = settings('general')->site_name;
$specificSetting = settings('general')->site_name();

// Accessing a nested setting directly
$nestedSetting = settings('general.site_name');
```

### Configuration

[](#configuration)

Make sure you have Spatie's settings package installed and configured in your Laravel application. You can follow the [official documentation](https://github.com/spatie/laravel-settings?tab=readme-ov-file#installation) for detailed instructions.

### Features

[](#features)

- Easy integration with Laravel Nova
- User-friendly settings management interface
- Compatible with Spatie's settings package

### Contributing

[](#contributing)

Contributions are welcome! Please feel free to submit a Pull Request or open an issue.

License This package is open-sourced software licensed under the [MIT license](LICENSE).

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance24

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 91.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Total

13

Last Release

652d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/51f5bc45a8653e16229499476a51988197350c7648ec3b961c62c45cc92d8872?d=identicon)[ferdiunal](/maintainers/ferdiunal)

---

Top Contributors

[![ferdiunal](https://avatars.githubusercontent.com/u/5059851?v=4)](https://github.com/ferdiunal "ferdiunal (22 commits)")[![joserick](https://avatars.githubusercontent.com/u/15143699?v=4)](https://github.com/joserick "joserick (1 commits)")[![Uriziel01](https://avatars.githubusercontent.com/u/568207?v=4)](https://github.com/Uriziel01 "Uriziel01 (1 commits)")

---

Tags

laravellaravel-novalaravel-nova-packagelaravel-nova-settingslaravel-nova-toollaravel-settingsnova-settingsspatie-settingsspatielaravelSettingsnovaspatie-settingsnova-settings

### Embed Badge

![Health badge](/badges/ferdiunal-nova-settings/health.svg)

```
[![Health](https://phpackages.com/badges/ferdiunal-nova-settings/health.svg)](https://phpackages.com/packages/ferdiunal-nova-settings)
```

###  Alternatives

[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[ebess/advanced-nova-media-library

Laravel Nova tools for managing the Spatie media library.

6163.5M22](/packages/ebess-advanced-nova-media-library)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

58249.9k](/packages/sbine-route-viewer)[novius/laravel-nova-order-nestedset-field

A Laravel Nova field that make your resources orderable

2393.1k2](/packages/novius-laravel-nova-order-nestedset-field)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
