pixelpeter/filament-language-tabs
Composer 安装命令:
composer require pixelpeter/filament-language-tabs
包简介
Group multilingual fields into tabs
README 文档
README
Group multilingual fields into tabs
This package is a Filament plugin that allows you to group multilingual fields into tabs. It can be configured which languages are required to be filled out.
Compatibility
| Filament | branch/tag |
|---|---|
| v4.x | main |
| v3.x | v2.x |
| v2.x | v1.x |
Installation
Install the package via composer:
composer require pixelpeter/filament-language-tabs
Publish the config file with:
php artisan vendor:publish --tag="filament-language-tabs-config"
Optionally, publish the view:
php artisan vendor:publish --tag="filament-language-tabs-views"
This is the contents of the published config file:
return [ /* |-------------------------------------------------------------------------- | Default Locales |-------------------------------------------------------------------------- | | These are the locales this package will use generate the tabs | */ 'default_locales' => ['de', 'en', 'fr'], /* |-------------------------------------------------------------------------- | Required Locales |-------------------------------------------------------------------------- | | These are the locales this package will use to set the field as required | This can be used if one translation or language is optional | */ 'required_locales' => ['de', 'en'], ];
Prerequisites
Install spatie-translatable
composer require spatie/laravel-translatable
Create a model and make it translatable
// Models/Post.php class Post extends Model { use HasFactory, HasTranslations; public $translatable = ['headline', 'body', 'slug']; protected $casts = [ 'headline' => 'array', 'body' => 'array', 'slug' => 'array', ]; protected $guarded = ['id']; }
Create a migration for the model
// database/migrations ... public function up(): void { Schema::create('posts', function (Blueprint $table) { $table->id(); $table->json('headline'); $table->json('slug'); $table->json('body'); $table->timestamps(); }); } ...
Setup & configuration
FilamentPHP V4.x
Method 1 (preferred): Add the LanguageTabs component to the PostForm schema
// app/Filament/Resources/Posts/Schemas/PostForm.php ... use Pixelpeter\FilamentLanguageTabs\Forms\Components\LanguageTabs; class PostForm { public static function configure(Schema $schema): Schema { return $schema ->components([ LanguageTabs::make([ TextInput::make('headline')->label('headline')->required(), TextInput::make('slug')->label('slug'), MarkdownEditor::make('body')->label('body'), ]), ]); } }
Method 2: Add the LanguageTabs component directly to the Filament resource
// app/Filament/Resources/PostResource.php ... use Pixelpeter\FilamentLanguageTabs\Forms\Components\LanguageTabs; class PostResource extends Resource { public static function form(Form $form): Form { return $form ->components([ LanguageTabs::make([ Forms\Components\TextInput::make('headline')->label('headline')->required(), Forms\Components\TextInput::make('slug')->label('slug'), Forms\Components\MarkdownEditor::make('body')->label('body'), ]), ]); }
FilamentPHP V3.x
Add the LanguageTabs component to your Filament resource
// app/Filament/Resources/PostResource.php ... use Pixelpeter\FilamentLanguageTabs\Forms\Components\LanguageTabs; class PostResource extends Resource { public static function form(Form $form): Form { return $form ->schema([ LanguageTabs::make([ Forms\Components\TextInput::make('headline')->label('headline')->required(), Forms\Components\TextInput::make('slug')->label('slug'), Forms\Components\MarkdownEditor::make('body')->label('body'), ]), ]); }
Configure which languages to add to the tabs
// config/filament-language-tabs.php return [ 'default_locales' => ['de', 'en', 'fr'], ]
Configure for which languages a field is required
If a field is defined as required
... ->schema([ Forms\Components\TextInput::make('headline')->label('headline')->required(), ... ]), ...
it will only be set as required for the languages configured in required_locals
// config/filament-language-tabs.php return [ 'required_locales' => ['de', 'en'], ]
The headline is not (marked as) required for French language
Testing
./vendor/bin/pest
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review the security policy on how to report security vulnerabilities.
Credits
- pixelpeter
- Thanks to ralphjsmit for the inspiration of creating a TestableForm to help with testing this component
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
pixelpeter/filament-language-tabs 适用场景与选型建议
pixelpeter/filament-language-tabs 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.95k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2025 年 04 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「pixelpeter」 「filament-language-tabs」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pixelpeter/filament-language-tabs 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pixelpeter/filament-language-tabs 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pixelpeter/filament-language-tabs 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Alfabank REST API integration
Laravel package for Accurate Online API integration.
Shared RCX Laravel DataTables UI and configuration helpers.
Boot a Laravel project on any machine with one command: app:serve installs missing tools (PHP, Node, Composer, Herd, Docker), creates .env, sets up the database, runs migrations, builds assets, starts a queue worker and serves via Herd, Sail or artisan serve; app:down cleanly stops everything it sta
Branded, diagnostic error pages (500, 403, 404, 419, 503) for Filament — native Filament UI, dark mode and translations out of the box.
Turn any PDF into a Pingen-ready A4 letter (generated address cover page + A4 normalisation + safe margins) and send it through the Pingen print & mail API. Laravel-first.
统计信息
- 总下载量: 8.95k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 35
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-04-01