Package Data | |
---|---|
Maintainer Username: | ahmedash95 |
Maintainer Contact: | freek@spatie.be (Freek Van der Herten) |
Package Create Date: | 2016-12-14 |
Package Last Update: | 2016-12-14 |
Home Page: | https://murze.be/2016/04/making-eloquent-models-translatable/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:05:43 |
Package Statistics | |
---|---|
Total Downloads: | 66 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package contains a trait to make Eloquent models translatable. Translations are stored as json. There is no extra table needed to hold them.
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'
You're free to use this package (it's MIT-licensed), but if it makes it to your production environment you are required to send us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
The best postcards will get published on the open source page on our website.
You can install the package via composer:
composer require ahmedash95/laravel-translatable
Next up, the service provider must be registered:
// config/app.php
'providers' => [
...
Spatie\Translatable\TranslatableServiceProvider::class,
];
If you want to change add fallback_locale, you must publish the config file:
php artisan vendor:publish --provider="Spatie\Translatable\TranslatableServiceProvider"
This is the contents of the published file:
return [
'fallback_locale' => 'en',
];
The required steps to make a model translatable are:
Spatie\Translatable\HasTranslations
-trait.$translatable
which holds an array with all the names of attributes you wish to make translatable.text
-datatype in your database. If your database supports json
-columns, use that.Here's an example of a prepared model:
use Illuminate\Database\Eloquent\Model;
use Spatie\Translatable\HasTranslations;
class NewsItem extends Model
{
use HasTranslations;
public $translatable = ['name'];
}
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
.
public function setTranslation(string $attributeName, string $locale, string $value)
public function forgetTranslation(string $attributeName, string $locale)
public function getTranslations(string $attributeName) : array
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);
Right after calling setTranslation
the Spatie\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;
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'
],
]);
If you're using MySQL 5.7 or above, it's recommended that you use the json data type for housing translations in the db. This will allow you to query these columns like this:
NewsItem::whereRaw('name->"$.en" = \'Name in English\'')->get();
In laravel 5.2.23 and above you can use the fluent syntax:
NewsItem::where('name->en', 'Name in English')->get();
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email freek@spatie.be instead of using the issue tracker.
We got the idea to store translations as json in a column from Mohamed Said. Parts of the readme of his multiligual package were used in this readme.
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
The MIT License (MIT). Please see License File for more information.