Skip to content

Commit 4a63e6a

Browse files
authored
Merge pull request #39 from chadidi/2.x-docs
2 parents a2dc9da + 1a5d1a4 commit 4a63e6a

File tree

2 files changed

+111
-42
lines changed

2 files changed

+111
-42
lines changed

README.md

+111-42
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# translatable
1+
# Laravel Translatable
22

33
It's a Laravel model columns translation manager
44

5-
## Current working model
5+
## How it works?
66

77
![Laravel Translatable current working model](/images/current_working_model.png)
88

@@ -16,7 +16,7 @@ composer require fevrok/laravel-translatable
1616

1717
If you have Laravel 5.5 and up The package will automatically register itself.
1818

19-
else you have to add the service provider to app/config/app.php
19+
else you have to add the service provider to `config/app.php`
2020

2121
```php
2222
Fevrok\Translatable\TranslatableServiceProvider::class,
@@ -28,37 +28,45 @@ publish config file and migration.
2828
php artisan vendor:publish --provider="Fevrok\Translatable\TranslatableServiceProvider"
2929
```
3030

31-
This is the contents of the published file:
31+
next migrate translations table
32+
33+
```bash
34+
php artisan migrate
35+
```
36+
37+
## Setup
38+
39+
After finishing the installation you can open `config/translatable.php`:
3240

3341
```php
3442
return [
43+
/**
44+
* Set whether or not the translations is enbaled.
45+
*/
46+
'enabled' => true,
3547

3648
/**
37-
* Default Locale || Root columns locale
38-
* We will use this locale if config('app.locale') translation not exist
49+
* Select default language
3950
*/
4051
'locale' => 'en',
4152

4253
];
4354
```
55+
And update your config accordingly.
4456

45-
next migrate translations table
46-
47-
```bash
48-
php artisan migrate
49-
```
50-
51-
## Making a model translatable
57+
### Making a model translatable
5258

5359
The required steps to make a model translatable are:
5460

55-
- Just use the `Fevrok\Translatable\Translatable` trait.
61+
- use the `Fevrok\Translatable\Translatable` trait.
62+
- define the model translatable fields in `$translatable` property.
5663

5764
Here's an example of a prepared model:
5865

5966
```php
60-
use Illuminate\Database\Eloquent\Model;
67+
6168
use Fevrok\Translatable\Translatable;
69+
use Illuminate\Database\Eloquent\Model;
6270

6371
class Item extends Model
6472
{
@@ -70,7 +78,8 @@ class Item extends Model
7078
* @var array
7179
*/
7280
protected $translatable = [
73-
'name', 'color'
81+
'name',
82+
'description',
7483
];
7584
}
7685
```
@@ -88,7 +97,7 @@ class CustomTranslation extends \Fevrok\Translatable\Models\Translation
8897
}
8998
```
9099

91-
Add `$translations_model` property and give it your custom translations class.
100+
Add `$translations_model` property and give it to the model you wanna customize,
92101

93102
```php
94103
use Illuminate\Database\Eloquent\Model;
@@ -106,7 +115,7 @@ class Item extends Model
106115
protected $translatable = [
107116
'name'
108117
];
109-
118+
110119
/**
111120
* The model used to get translatios.
112121
*
@@ -116,47 +125,107 @@ class Item extends Model
116125
}
117126
```
118127

119-
### Available methods
128+
## Usage
120129

121-
Saving translations
130+
### Eager-load translations
122131

123132
```php
124-
$item = new Item;
125-
$data = array('en' => 'car', 'ar' => 'سيارة');
133+
// Loads all translations
134+
$posts = Post::with('translations')->get();
135+
136+
// Loads all translations
137+
$posts = Post::all();
138+
$posts->load('translations');
126139

127-
$item->setTranslations('name', $data); // setTranslations($attribute, array $translations, $save = false)
140+
// Loads all translations
141+
$posts = Post::withTranslations()->get();
128142

129-
// or save one translation
130-
$item->setTranslation('name', 'en', 'car', true); // setTranslation($attribute, $locale, $value, $save = false)
143+
// Loads specific locales translations
144+
$posts = Post::withTranslations(['en', 'da'])->get();
131145

132-
// or just do
133-
$item->name = 'car'; // note: this will save automaticaly unless it's the default locale
146+
// Loads specific locale translations
147+
$posts = Post::withTranslations('da')->get();
134148

135-
// This will save if (current locale == default locale OR $save = false)
136-
$item->save();
149+
// Loads current locale translations
150+
$posts = Post::withTranslations('da')->get();
137151
```
138152

139-
Get translations
153+
### Get default language value
140154

141155
```php
142-
$item = new Item::first();
143-
// get current locale translation
144-
$item->city
145-
OR
146-
$item->getTranslation('city');
147-
148-
// pass translation locales
149-
$item->getTranslation('city', 'ar'); // getTranslation($attribute, $language = null, $fallback = true)
150-
$item->getTranslationsOf('name', ['ar', 'en']); // getTranslationsOf($attribute, array $languages = null, $fallback = true)
156+
echo $post->title;
151157
```
152158

153-
Delete translations
159+
### Get translated value
154160

155161
```php
156-
$item = new Item::first();
157-
$item->deleteTranslations(['name', 'color'], ['ar', 'en']); // deleteTranslations(array $attributes, $locales = null)
162+
echo $post->getTranslatedAttribute('title', 'locale', 'fallbackLocale');
158163
```
159164

165+
If you do not define locale, the current application locale will be used. You can pass in your own locale as a string. If you do not define fallbackLocale, the current application fallback locale will be used. You can pass your own locale as a string. If you want to turn the fallback locale off, pass false. If no values are found for the model for a specific attribute, either for the locale or the fallback, it will set that attribute to null.
166+
167+
### Translate the whole model
168+
169+
```php
170+
$post = $post->translate('locale', 'fallbackLocale');
171+
echo $post->title;
172+
echo $post->body;
173+
174+
// You can also run the `translate` method on the Eloquent collection
175+
// to translate all models in the collection.
176+
$posts = $posts->translate('locale', 'fallbackLocale');
177+
echo $posts[0]->title;
178+
```
179+
180+
If you do not define locale, the current application locale will be used. You can pass in your own locale as a string. If you do not define fallbackLocale, the current application fallback locale will be used. You can pass in your own locale as a string. If you want to turn the fallback locale off, pass false. If no values are found for the model for a specific attribute, either for the locale or the fallback, it will set that attribute to null.
181+
182+
### Check if model is translatable
183+
184+
```php
185+
// with string
186+
if (Translatable::translatable(Post::class)) {
187+
// it's translatable
188+
}
189+
190+
// with object of Model or Collection
191+
if (Translatable::translatable($post)) {
192+
// it's translatable
193+
}
194+
```
195+
196+
### Set attribute translations
197+
198+
```php
199+
$post = $post->translate('da');
200+
$post->title = 'foobar';
201+
$post->save();
202+
```
203+
204+
This will update or create the translation for title of the post with the locale da. Please note that if a modified attribute is not translatable, then it will make the changes directly to the model itself. Meaning that it will overwrite the attribute in the language set as default.
205+
206+
### Query translatable Models
207+
208+
To search for a translated value, you can use the `whereTranslation` method.
209+
For example, to search for the slug of a post, you'd use
210+
211+
```php
212+
$page = Page::whereTranslation('slug', 'my-translated-slug');
213+
// Is the same as
214+
$page = Page::whereTranslation('slug', '=', 'my-translated-slug');
215+
// Search only locale en, de and the default locale
216+
$page = Page::whereTranslation('slug', '=', 'my-translated-slug', ['en', 'de']);
217+
// Search only locale en and de
218+
$page = Page::whereTranslation('slug', '=', 'my-translated-slug', ['en', 'de'], false);
219+
```
220+
221+
`whereTranslation` accepts the following parameter:
222+
223+
* `field` the field you want to search in
224+
* `operator` the operator. Defaults to `=`. Also can be the value \(Same as [where](https://laravel.com/docs/queries#where-clauses)\)
225+
* `value` the value you want to search for
226+
* `locales` the locales you want to search in as an array. Leave as `null` if you want to search all locales
227+
* `default` also search in the default value/locale. Defaults to true.
228+
160229
## Maintainers
161230

162231
<table>

images/current_working_model.png

-57.4 KB
Loading

0 commit comments

Comments
 (0)