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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

Installation

  1. Install the package via Composer:

  2. Publish the configuration file:

  3. Publish the translation files (optional, but recommended for customization):

  4. 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:

  1. Create a new class that implements the TranslationEngine interface:

  2. Register your custom engine in the config file:

  3. 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:

Troubleshooting

If translations are not working:

  1. Ensure the HasTranslations trait is properly added to your model.
  2. Verify that the fields are listed in the $translatable array in your model.
  3. Check that the correct languages are set in your config/filament-translate.php file.
  4. Confirm your translation engine (e.g., DeepL) is properly configured with a valid API key.
  5. Clear Laravel's cache: php artisan cache:clear
  6. 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

PHP Build Version
Package Version
Requires php Version ^8.1
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package bambolee-digital/filament-translate contains the following files

Loading the files please wait ....