/** * @return \yii\db\ActiveQuery */ public function getCustomer() { return $this->hasOne(Customers::className(), ['id' => 'customer_id']); }
public function getCustomer() { return $this->hasMany(Customers::className(), ['user_id' => 'id']); }