PHPackages                             rectitude-open/filament-system-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. rectitude-open/filament-system-settings

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

rectitude-open/filament-system-settings
=======================================

This is my package filament-system-settings

v1.3.0(1y ago)0506[5 PRs](https://github.com/rectitude-open/filament-system-settings/pulls)1MITPHPPHP ^8.1CI passing

Since May 18Pushed 3mo agoCompare

[ Source](https://github.com/rectitude-open/filament-system-settings)[ Packagist](https://packagist.org/packages/rectitude-open/filament-system-settings)[ Docs](https://github.com/rectitude-open/filament-system-settings)[ RSS](/packages/rectitude-open-filament-system-settings/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (5)Dependencies (14)Versions (11)Used By (1)

Filament System Settings
========================

[](#filament-system-settings)

[![Do not use](https://camo.githubusercontent.com/fa423dc5d7db2e0ff4ad07b5f84ee76a84ededdbcc37f1f60c16507d8d064583/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f556e646572253230646576656c6f706d656e742d446f6e27742532307573652d726564)](https://camo.githubusercontent.com/fa423dc5d7db2e0ff4ad07b5f84ee76a84ededdbcc37f1f60c16507d8d064583/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f556e646572253230646576656c6f706d656e742d446f6e27742532307573652d726564)[![Latest Version on Packagist](https://camo.githubusercontent.com/ae9f0209ffd55ab089ac4c39ccea04b80c61067fe50e0508d4e1ed7e79eba734/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7265637469747564652d6f70656e2f66696c616d656e742d73797374656d2d73657474696e67732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rectitude-open/filament-system-settings)[![Tests](https://github.com/rectitude-open/filament-system-settings/actions/workflows/run-tests.yml/badge.svg)](https://github.com/rectitude-open/filament-system-settings/actions/workflows/run-tests.yml)[![PHPStan](https://camo.githubusercontent.com/2de44fa415e74513b3ab0978012f8b4bb8e37dafe58e2d27f779705b278f0373/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d6c6576656c253230352d627269676874677265656e)](https://phpstan.org/)[![Total Downloads](https://camo.githubusercontent.com/e4a2bb1ad992860bd03d86616b6a2d5cf3b4cb21fe3d7cb20f3c2852e53cd128/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7265637469747564652d6f70656e2f66696c616d656e742d73797374656d2d73657474696e67732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rectitude-open/filament-system-settings)[![PRs Welcome](https://camo.githubusercontent.com/25b3e6d0d42c98de74a98cbb4d149a1c09020cf6d1361993b72d7d5b8ffed363/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5052732d77656c636f6d652d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://github.com/rectitude-open/filament-system-settings/pulls)

Filament System Settings is a user-friendly plugin that provides a comprehensive system settings page for your Filament admin panel, It includes several preset panels for managing application configuration, mail settings, security options, and more.

The package is built on top of the [Filament Spatie Laravel Settings Plugin](https://github.com/filamentphp/spatie-laravel-settings-plugin) package.

This package is also a standalone part of a CMS project: [FilaPress](https://github.com/rectitude-open/filapress).

ResourcePageClusterMigrationModelConfigViewLocalization❌✅❌✅✅✅❌✅Installation
------------

[](#installation)

You can install the package via composer:

```
composer require rectitude-open/filament-system-settings
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="filament-system-settings-migrations"
php artisan migrate
```

You can publish the config file with:

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

Optionally, you can publish the translations using

```
php artisan vendor:publish --tag="filament-news-translations"
```

This is the contents of the published config file:

```
return [
    'system_settings' => \RectitudeOpen\FilamentSystemSettings\Settings\SystemSettings::class,
    'system_settings_page' => \RectitudeOpen\FilamentSystemSettings\Pages\SystemSettingsPage::class,
];
```

Usage
-----

[](#usage)

The package provides a System Settings Page that allows you to manage system settings in your Filament admin panel.

To use the page provided by this package, you need to register it in your Panel Provider first.

```
namespace App\Providers\Filament;

use RectitudeOpen\FilamentSystemSettings\FilamentSystemSettingsPlugin;

class AdminPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel
            ->plugins([
                FilamentSystemSettingsPlugin::make()
            ]);
    }
}
```

For more advanced setting features, please refer to the documentation of the [Laravel Settings](https://github.com/spatie/laravel-settings) package.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Aspirant Zhang](https://github.com/aspirantzhang)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance64

Regular maintenance activity

Popularity14

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 74.1% 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 ~9 days

Total

5

Last Release

421d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/06e113a1e04f4cde069f333882f90653a22ce080afa4ac21d1c3d95533b074d5?d=identicon)[aspirantzhang](/maintainers/aspirantzhang)

---

Top Contributors

[![aspirantzhang](https://avatars.githubusercontent.com/u/24559988?v=4)](https://github.com/aspirantzhang "aspirantzhang (20 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

filamentfilament-plugin

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/rectitude-open-filament-system-settings/health.svg)

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

###  Alternatives

[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

316.8k2](/packages/finity-labs-fin-mail)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3915.5k](/packages/rawilk-profile-filament-plugin)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16429.7k](/packages/backstage-mails)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3221.4M29](/packages/ysfkaya-filament-phone-input)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

85240.3k9](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6758.2k2](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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