You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
0 commit comments