Update the translation or create a new one.
1$post->translateOrNew('en')->title = 'Something Here';2$post->save();
Getting the translation or the default translation.
1echo $post->translateOrDefault('en')->title;
Checking if the model has been translated in a specific locale or not.
1if($post->hasTranslation('en')) {2 //3}