outerweb / filament-settings
Filament integration for the outerweb/settings package
Fund package maintenance!
outer-web
Installs: 61 544
Dependents: 7
Suggesters: 0
Security: 0
Stars: 34
Watchers: 1
Forks: 18
pkg:composer/outerweb/filament-settings
Requires
- php: ^8.4
- filament/filament: ^4.0
- outerweb/settings: ^2.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.8
- orchestra/testbench: ^10.0.0||^9.0.0
- pestphp/pest: ^4.0
- pestphp/pest-plugin-arch: ^4.0
- pestphp/pest-plugin-laravel: ^4.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
README
Filament Settings
This Filament plugin provides an integration for the outerweb/settings package.
Table of Contents
Installation
You can install the package via composer:
composer require outerweb/filament-settings
Follow the installation instructions for the outerweb/settings package.
Add the plugin to your panel:
use Outerweb\FilamentSettings\SettingsPlugin; public function panel(Panel $panel): Panel { return $panel // ... ->plugins([ // ... SettingsPlugin::make() ->pages([ // Add your settings pages here ]), ]); }
Usage
Create a Page
Create a settings page by extending Outerweb\FilamentSettings\Pages\Settings
:
namespace App\Filament\Pages; use Outerweb\FilamentSettings\Pages\Settings; class MySettings extends Settings { public function form(Schema $schema): Schema { return $schema ->components([ Tabs::make() ->columnSpanFull() ->tabs([ Tab::make('General') ->schema([ TextInput::make('general.brand_name') ->required(), ]), Tab::make('Seo') ->schema([ TextInput::make('seo.title') ->required(), TextInput::make('seo.description') ->required(), ]), ]), ]); } }
Creating multiple pages
You can create as many settings pages as you want.
use Outerweb\FilamentSettings\SettingsPlugin; public function panel(Panel $panel): Panel { return $panel // ... ->plugins([ // ... SettingsPlugin::make() ->pages([ \App\Filament\Pages\GeneralSettings::class, \App\Filament\Pages\SeoSettings::class, \App\Filament\Pages\OtherSettings::class, ]), ]); }
Each page just needs to extend Outerweb\FilamentSettings\Pages\Settings
. You can override the all properties like the icon
, navigationGroup
... just like a normal Filament page.
Mutating settings data
You can mutate the settings before filling the form and before saving them to the database by defining the mutateFormDataBeforeFill
and mutateFormDataBeforeSave
methods.
For example, if you want to store all settings under a specific tenant key:
public function mutateFormDataBeforeFill(array $data): array { return collect($data)->get($this->getTenantKey(), []); } public function mutateFormDataBeforeSave(array $data): array { return collect($data)->mapWithKeys(function ($item, $key) { return ["{$this->getTenantKey()}.{$key}" => $item]; })->toArray(); } /** * A custom function for this example */ private function getTenantKey(): string { return 'tenant'; // Your logic to determine the tenant }
Changelog
Please see CHANGELOG for more information on what has changed recently.
License
The MIT License (MIT). Please see License File for more information.