Spatie\Translatable\HasTranslations::setTranslations PHP Метод

setTranslations() публичный Метод

public setTranslations ( string $key, array $translations )
$key string
$translations array
    public function setTranslations(string $key, array $translations)
    {
        $this->guardAgainstUntranslatableAttribute($key);
        foreach ($translations as $locale => $translation) {
            $this->setTranslation($key, $locale, $translation);
        }
        return $this;
    }