public function getBlud()
{
return $this->hasOne(Blud::className(), ['id' => 'blud_id'])->viaTable('tproducts_attributes', ['tproduct_id' => 'id']);
}
public function actionZachet()
{
$model = new ZachetForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
// получили данные, передали для генерации изображения, вернули обратно в вид.
return $this->render('zachet', ['model' => $model);
}
return $this->render('zachet', compact('model'));
}