['manager_id', 'user_card_id'], 'message' => 'Этот сотрудник уже закреплён за менеджером'], [['employee_id'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['user_card_id' => 'id']], [['manager_id'], 'exist', 'skipOnError' => true, 'targetClass' => Manager::className(), 'targetAttribute' => ['manager_id' => 'id']], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'manager_id' => 'Менеджер', 'employee_id' => 'Карточка работника', ]; } /** * @return ActiveQuery */ public function getEmployee() { return $this->hasOne(User::class, ['id' => 'employee_id']); } /** * @return ActiveQuery */ public function getManager() { return $this->hasOne(Manager::className(), ['id' => 'manager_id']); } }