Download the PHP package happenv-com/filament-translatable without Composer
On this page you can find all versions of the php package happenv-com/filament-translatable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download happenv-com/filament-translatable
More information about happenv-com/filament-translatable
Files in happenv-com/filament-translatable
Package filament-translatable
Short Description Highly customizable Translation component for Filament PHP.
License MIT
Homepage https://github.com/happenv-com/filament-translatable
Informations about the package filament-translatable
Filament Translatable
Filament Translatable is a flexible package that provides a complete solution for managing multilingual content in Filament admin panels. It allows you to easily create translatable form fields with an intuitive tabbed interface, supporting multiple locales and translation packages.
Key Features
- Multiple translation backends — supports both spatie/laravel-translatable and astrotomic/laravel-translatable
- Two usage modes — use the quick
translatable()macro on any field, or the fullTranslationscomponent for advanced scenarios - Locale tabs with flags — display translations in horizontal or vertical tabs with optional country flag icons
- Flexible locale configuration — define locales globally or per-component, with custom labels
- Required locale validation — mark fields as required for specific locales or only for the default locale
- Field decoration per locale — customize field appearance (prefix, suffix, etc.) for each language
- Custom actions per tab — add custom Filament actions to each locale tab with access to the current locale
- Include or exclude fields from translation — selectively control which fields are translated
- Prefix/suffix locale labels — optionally add locale indicators to field labels
Installation
| Filament Version | Filament Translate Field Version |
|---|---|
| 3.x | 2.x (old namespace) |
| 4.x | 4.x |
| 5.x | 4.x |
You can install the package via composer:
Publish the assets:
Configuration
With spatie/laravel-translatable
The Spatie package is the default translation backend. Follow the instructions in the Spatie documentation to properly configure your models.
With astrotomic/laravel-translatable
The Astrotomic package is an alternative translation backend.
Follow the Astrotomic documentation to configure your models. However, instead of using the Translatable trait from the Astrotomic package, use Happenv\FilamentTranslatable\Traits\AstrotomicTranslatable.
When using the Astrotomic package, configure the plugin to use Astrotomic mode:
You can also configure translationMode per component:
Or per field:
Setup
Setting translatable locales
To set up the locales that can be used to translate content, pass an array of locales to the locales() plugin method:
You can set locale labels using key => value array:
Also, you can pass a Closure:
Setting default locale
You can set the default locale using the defaultLocale() method:
Enable or disable flags in locale labels
You can enable or disable flags in locale labels (disabled by default):
Setting flag width
You can set the flag width using:
Enable or disable names in locale labels
You can enable or disable locale names in locale labels (enabled by default):
Otherwise, the app.fallback_locale config value will be used.
Usage
translatable() macro
The translatable() macro allows you to quickly convert any form field into a multilingual field that supports translations for each configured locale.
Marking a field as required for a specific locale
You can make a field required only for specific locales. In this example, the "name" field will only be required for the English language:
Marking a field as required for the default locale
You can make a field required only for the default locale. The default locale is determined by the defaultLocale() plugin setting or the app.fallback_locale config value:
Decorating language-specific fields
You can customize the appearance of fields for specific locales using the decorateTranslationField() method. This is useful for adding locale-specific prefixes, suffixes, or other modifications:
Customizing Translations component
After using the translatable() method, the context of the field is switched to the Translations component, so you can use any method that belongs to the component.
[!CAUTION] Be sure to set field-specific methods like
required()orrequiredDefaultLocale()before calling thetranslatable()method.
Translations component
The Translations component provides a more powerful way to configure multiple form fields for multilingual support. It displays translations in a tabbed interface, with each tab representing a different locale.
[!NOTE] Using the
translatable()method within theTranslationscomponent is not needed.[!IMPORTANT] Be sure to set different names for each
Translationscomponent when using multiple instances.
Setting the translatable locales for specific components
By default, locales are configured globally in the plugin settings. However, you can override the locales for a specific Translations component:
Setting custom field labels per locale
You can customize field labels for each locale using the fieldTranslatableLabel() method. This is useful for translating field labels themselves:
Adding prefix/suffix locale labels to fields
You can add the locale name as a prefix or suffix to field labels using the prefixLocaleLabel() or suffixLocaleLabel() methods. This helps users identify which language they are editing:
Customizing the locale label format
By default, the prefix/suffix locale label is generated from the locale code and enclosed in parentheses (e.g., "(English)"). You can customize this format using the preformLocaleLabelUsing() method:
Conditionally adding locale labels
You can conditionally add prefix/suffix labels by injecting the $field parameter into the callback. This allows you to apply locale labels only to specific fields:
Adding actions to locale tabs
You can add custom Filament actions to each locale tab using the actions() method. Actions appear in the tab header and can be used for operations like auto-translation or copying content between locales:
Accessing the locale in actions
To access the current locale within an action, use the $arguments parameter and retrieve the locale value:
Accessing the locale in schema
You can access the current locale within the schema definition by defining a $locale parameter. This is useful for conditional logic based on the locale:
Removing the styled container
By default, the Translations component is wrapped in a card-styled container. You can remove this styling using the contained() method:
Vertical tabs
You can display translations as vertical tabs:
Overriding plugin settings per component
You can override the global plugin settings directly on individual components:
Excluding fields from translation
The exclude() method allows you to specify fields that should not be translated. Excluded fields will appear in the form but will not be duplicated for each locale. This is useful for fields that contain non-translatable content:
Without exclude:
With exclude:
Including only specific fields for translation
The include() method allows you to specify which fields should be translated. This is useful when only a small subset of fields in a large form requires translations.
Without include:
With include(['title']):
Publishing Views
To publish the views, run:
Testing
Changelog
See the CHANGELOG for more information on what has changed recently.
Contributing
See CONTRIBUTING for details.
Security Vulnerabilities
If you discover any security-related issues, please email [email protected] instead of using the issue tracker.
Credits
- Lipis for icons
- Solution Forest for great inspiration
- Outer Web for the macro idea
- All Contributors
License
Filament Translatable is open-sourced software licensed under the MIT license.