PHPackages                             reworck/filament-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. reworck/filament-settings

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

reworck/filament-settings
=========================

Manage your settings in filament for spatie/valuestore

0.4.0(3y ago)433.6k9[1 PRs](https://github.com/reworck/filament-settings/pulls)PHPPHP ^8.0

Since Jan 7Pushed 2y ago1 watchersCompare

[ Source](https://github.com/reworck/filament-settings)[ Packagist](https://packagist.org/packages/reworck/filament-settings)[ RSS](/packages/reworck-filament-settings/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (6)Dependencies (2)Versions (7)Used By (0)

Filament settings
=================

[](#filament-settings)

This package allows for easy setting management using [Spatie's ValueStore package](https://github.com/spatie/valuestore)

Content of the configuration file
---------------------------------

[](#content-of-the-configuration-file)

```
return [
    // Group the menu item belongs to
    'group' => 'Settings',

    // Sidebar label
    'label' => 'Settings',

    // Path to the file to be used as storage
    'path' => storage_path('app/settings.json'),
];
```

Installation
------------

[](#installation)

1. Require the package

```
composer require reworck/filament-settings
```

2. publish the configuration file

```
php artisan vendor:publish --tag=filament-settings-config
```

4. (Optionally) you can publish the views for the page and the view used by the livewire component

```
php artisan vendor:publish --tag=filament-settings-views
```

Usage
-----

[](#usage)

Define your fields by adding the following in the `boot` method of your `AppServiceProvider`

```
\Reworck\FilamentSettings\FilamentSettings::setFormFields([
    \Filament\Forms\Components\TextInput::make('title'),
]);
```

After that you can access your values as you usually would using [spatie/valuestore](https://github.com/spatie/valuestore)

### Hiding the page for users

[](#hiding-the-page-for-users)

To hide the Settings page from some users add a `canManageSettings` method to your `User` model.

```
public function canManageSettings(): bool
{
    return $this->can('manage.settings');
}
```

By default the page will be shown to all users.

Testing
-------

[](#testing)

```
composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Quinten Buis](https://github.com/quintenbuis)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75% 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 ~93 days

Recently: every ~115 days

Total

6

Last Release

1159d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f0d2d83d9a5b8508b2ba03cbf6f8e626965a764345355c4ef26303b9b9117fd3?d=identicon)[quintenbuis](/maintainers/quintenbuis)

---

Top Contributors

[![quintenbuis](https://avatars.githubusercontent.com/u/36452184?v=4)](https://github.com/quintenbuis "quintenbuis (12 commits)")[![penzespeter](https://avatars.githubusercontent.com/u/43203207?v=4)](https://github.com/penzespeter "penzespeter (2 commits)")[![bfiessinger](https://avatars.githubusercontent.com/u/41627893?v=4)](https://github.com/bfiessinger "bfiessinger (1 commits)")[![svenluijten](https://avatars.githubusercontent.com/u/11269635?v=4)](https://github.com/svenluijten "svenluijten (1 commits)")

---

Tags

filamentfilament-packagefilament-pluginfilamentadminplugin

### Embed Badge

![Health badge](/badges/reworck-filament-settings/health.svg)

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

###  Alternatives

[jantinnerezo/livewire-alert

This package provides a simple alert utilities for your livewire components.

8071.3M20](/packages/jantinnerezo-livewire-alert)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

42010.0k](/packages/venturedrake-laravel-crm)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21255.6k](/packages/ramonrietdijk-livewire-tables)[noerd/noerd

101.3k6](/packages/noerd-noerd)[marcorieser/statamic-livewire

A Laravel Livewire integration for Statamic.

23100.9k12](/packages/marcorieser-statamic-livewire)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1319.7k3](/packages/team-nifty-gmbh-tall-datatables)

PHPackages © 2026

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