定制 rectitude-open/filament-system-settings 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rectitude-open/filament-system-settings

最新稳定版本:v1.3.0

Composer 安装命令:

composer require rectitude-open/filament-system-settings

包简介

This is my package filament-system-settings

README 文档

README

Do not use Latest Version on Packagist Tests PHPStan Total Downloads PRs Welcome

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

This package is also a standalone part of a CMS project: FilaPress.

Resource Page Cluster Migration Model Config View Localization

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

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

Testing

composer test

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.

统计信息

  • 总下载量: 381
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-18