solutionforest / laravel-translatable
A trait to make an Eloquent model hold translations
Fund package maintenance!
Patreon
Requires
- php: ^8.0
- illuminate/database: ^9.0|^10.0
- illuminate/support: ^9.0|^10.0
- spatie/laravel-package-tools: ^1.11
Requires (Dev)
- mockery/mockery: ^1.3|^1.4|^1.5|^1.6
- orchestra/testbench: ^7.0|^8.0
- dev-master
- 6.0.1
- 5.4.0
- 5.3.12
- 5.3.11
- 5.3.10
- 5.3.9
- 5.3.8
- 5.3.7
- 5.3.6
- 5.3.5
- 5.3.4
- 5.3.3
- 5.3.2
- 5.3.1
- 5.3
- 5.2.0
- 5.1.1
- 5.1.0
- 5.0.9
- 5.0.8
- 5.0.7
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.0
- v3.x-dev
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.2.1
- 2.2.0
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.3.0
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- 0.0.1
- dev-laravel-55
This package is not auto-updated.
Last update: 2024-11-01 19:40:54 UTC
README
This package contains a trait to make Eloquent models translatable. Translations are stored in Database. All translation will be cached by default Laravel Cache.
This Library forked from spatie/laravel-translatable
Technically, all methods are same. Use database as storage only.
Once the trait is installed on the model you can do these things:
$newsItem = new NewsItem; // This is an Eloquent model $newsItem ->setTranslation('name', 'en', 'Name in English') ->setTranslation('name', 'nl', 'Naam in het Nederlands') ->save(); $newsItem->name; // Returns 'Name in English' given that the current app locale is 'en' $newsItem->getTranslation('name', 'nl'); // returns 'Naam in het Nederlands' app()->setLocale('nl'); $newsItem->name; // Returns 'Naam in het Nederlands'
Installation
You can install the package via composer:
composer require solutionforest/laravel-translatable
Making a model translatable
The required steps to make a model translatable are:
- First,
php artisian migrate
migrate the table - Next, you need to add the
SolutionForest\Translatable\HasTranslations
-trait. - Next, you should create a public property
$translatable
which holds an array with all the names of attributes you wish to make translatable.
Here's an example of a prepared model:
use Illuminate\Database\Eloquent\Model; use SolutionForest\Translatable\HasTranslations; class NewsItem extends Model { use HasTranslations; public $translatable = ['name']; }
Available methods
Getting a translation
The easiest way to get a translation for the current locale is to just get the property for the translated attribute.
For example (given that name
is a translatable attribute):
$newsItem->name;
You can also use this method:
public function getTranslation(string $attributeName, string $locale) : string
This function has an alias named translate
.
Getting all translations
You can get all translations by calling getTranslations()
without an argument:
$newsItem->getTranslations();
Or you can use the accessor
$yourModel->translations
Setting a translation
The easiest way to set a translation for the current locale is to just set the property for a translatable attribute.
For example (given that name
is a translatable attribute):
$newsItem->name = 'New translation';
To set a translation for a specific locale you can use this method:
public function setTranslation(string $attributeName, string $locale, string $value)
To actually save the translation, don't forget to save your model.
$newsItem->setTranslation('name', 'en', 'Updated name in English'); $newsItem->save();
Validation
- if you want to validate an attribute for uniqueness before saving/updating the db, you might want to have a look at laravel-unique-translation which is made specifically for laravel-translatable.
Forgetting a translation
You can forget a translation for a specific field:
public function forgetTranslation(string $attributeName, string $locale)
You can forget all translations for a specific locale:
public function forgetAllTranslations(string $locale)
Getting all translations in one go
public function getTranslations(string $attributeName): array
Setting translations in one go
public function setTranslations(string $attributeName, array $translations)
Here's an example:
$translations = [ 'en' => 'Name in English', 'nl' => 'Naam in het Nederlands' ]; $newsItem->setTranslations('name', $translations);
Events
TranslationHasBeenSet
Right after calling setTranslation
the SolutionForest\Translatable\Events\TranslationHasBeenSet
-event will be fired.
It has these properties:
/** @var \Illuminate\Database\Eloquent\Model */ public $model; /** @var string */ public $attributeName; /** @var string */ public $locale; public $oldValue; public $newValue;
Creating models
You can immediately set translations when creating a model. Here's an example:
NewsItem::create([ 'name' => [ 'en' => 'Name in English', 'nl' => 'Naam in het Nederlands' ], ]);
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email alan@solutionforest.net instead of using the issue tracker.
Credits
We got the idea to store translations as json in a column from Mohamed Said. Parts of the readme of his multilingual package were used in this readme.
Support us
SolutionForest is a solution house based in Hong Kong.on our website.
License
The MIT License (MIT). Please see License File for more information.