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

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

ichbin/filament-settings
========================

Manage your settings in filament for spatie/valuestore

v3.0(2y ago)06PHPPHP ^8.0

Since Jul 30Pushed 2y ago1 watchersCompare

[ Source](https://github.com/boyfromhell/filament-settings)[ Packagist](https://packagist.org/packages/ichbin/filament-settings)[ RSS](/packages/ichbin-filament-settings/feed)WikiDiscussions v2 Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (4)Used By (0)

Filament settings and sitemap
=============================

[](#filament-settings-and-sitemap)

[![img](https://github.com/boyfromhell/filament-settings/raw/v2/img/img.png)](https://github.com/boyfromhell/filament-settings/blob/v2/img/img.png)

This package allows for easy setting management using

[Spatie's ValueStore package](https://github.com/spatie/valuestore)

[Spatie's Generate sitemaps package](https://github.com/spatie/laravel-sitemap)

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 ichbin/filament-settings "^v2.0"
```

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`

```
\IchBin\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)

Or in blade

```
{{ setting('key') }}

```

### 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.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

4

Last Release

1021d ago

Major Versions

v2.x-dev → v3.02023-07-30

PHP version history (2 changes)v2.0PHP ^8.0

v3.x-devPHP ^8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4071890?v=4)[boyfromhell](/maintainers/boyfromhell)[@boyfromhell](https://github.com/boyfromhell)

---

Top Contributors

[![boyfromhell](https://avatars.githubusercontent.com/u/4071890?v=4)](https://github.com/boyfromhell "boyfromhell (11 commits)")

### Embed Badge

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

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

###  Alternatives

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[pxlrbt/filament-environment-indicator

Indicator for the current environment inside Filament

151923.9k12](/packages/pxlrbt-filament-environment-indicator)[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

118126.9k](/packages/stephenjude-filament-feature-flags)

PHPackages © 2026

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