Hey, I've encountered the issue that I cannot update the locale that is currently being used.
I think I've done something wrong but I'm not quite sure.
My code looks like this:
$this->category->fill([
'name:de' => $this->nameGerman,
'name:en' => $this->nameEnglish
]);
$this->category->save();
The variables contain the right values.
The english name is updated if I set my locale to german but then the german name is not updated.
I hope that someone can help me :)