AddFreshSeeds::createCountryTranslations PHP Method

createCountryTranslations() private method

private createCountryTranslations ( $translations )
    private function createCountryTranslations($translations)
    {
        foreach ($translations as $data) {
            $translation = new CountryTranslation();
            $translation->country_id = $data['country_id'];
            $translation->locale = $data['locale'];
            $translation->name = $data['name'];
            $translation->save();
        }
    }