Добрый день.
Начал изучать Yii2 и не могу понять как сохранить несколько значений в промежуточную таблицу.
На данный момент сохраняю через link() но на сколько я понял так можно сохранить только 1 значение.
public function actionUpdate($id)
{
$model = Hosts::findOne($id);
if ($model->load(Yii::$app->request->post())) {
$hosts = Yii::$app->request->post("Hosts");
$platforms = Platforms::findOne($hosts['platforms']);
$model->link('platforms', $platforms);
$model->save();
return $this->redirect(['view', 'id' => $model->id]);
}