Download the PHP package bambolee-digital/filament-translate without Composer
On this page you can find all versions of the php package bambolee-digital/filament-translate. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bambolee-digital/filament-translate
More information about bambolee-digital/filament-translate
Files in bambolee-digital/filament-translate
Package filament-translate
Short Description A plugin for Filament that adds translation features to form fields, allowing content to be translated directly within the FilamentPHP admin interface.
License MIT
Informations about the package filament-translate
Filament Translate
Filament Translate is a powerful and flexible package that adds translation capabilities to your Filament PHP admin panel. It allows you to easily translate fields directly within the Filament interface.
Requirements
- PHP 8.0+
- Laravel 8.0+
- Filament PHP 2.0+
- Spatie Laravel Translatable
Installation
-
Install the package via Composer:
-
Publish the configuration file:
-
Publish the translation files (optional, but recommended for customization):
- Add the
Spatie\Translatable\HasTranslations
trait to your model:
Configuration
In the config/filament-translate.php
file, you can configure:
Usage
Making a Field Translatable
To make a field translatable in your Filament resource, use the translatable()
method:
Specifying an Active Locale
You can specify an active locale when using the translatable()
method:
The activeLocale
determines which translation will be initially displayed in the field.
How It Works
When you call ->translatable()
on a field, the package adds an action button next to the field. Clicking this button opens a modal, allowing you to translate the field's content into different languages using the configured translation engine.
Customizing Translations
You can customize the translation strings used by the package. After publishing the translation files, you can edit them in resources/lang/vendor/filament-translate
.
For example, to customize the English translations, edit the file resources/lang/vendor/filament-translate/en/filament-translate.php
:
Creating a Custom Translation Engine
Here's an example of how to create a Google Translate engine:
-
Create a new class that implements the
TranslationEngine
interface: -
Register your custom engine in the config file:
- Set it as the default engine or use it selectively in your fields:
Complete Example
Here's a complete example of using Filament Translate in a Filament resource:
In this example:
- The 'title' and 'content' fields are translatable.
- The 'title' field uses the current application locale as the active locale.
- The 'content' field uses the package's default locale.
- The 'author' and 'published_at' fields are not translatable.
Troubleshooting
If translations are not working:
- Ensure the
HasTranslations
trait is properly added to your model. - Verify that the fields are listed in the
$translatable
array in your model. - Check that the correct languages are set in your
config/filament-translate.php
file. - Confirm your translation engine (e.g., DeepL) is properly configured with a valid API key.
- Clear Laravel's cache:
php artisan cache:clear
- If package translation strings are not appearing, try using
trans('filament-translate::filament-translate.key')
instead of__()
.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This package is open-source software licensed under the MIT license.
Author
Kellvem Barbosa (kellvembarbosa)# filament-translate
All versions of filament-translate with dependencies
laravel/framework Version ^10.0|^11.0
filament/filament Version ^3.0
spatie/laravel-translatable Version ^6.8
guzzlehttp/guzzle Version ^7.9
deeplcom/deepl-php Version ^1.9