'all', 'ifs' => [], ]; } public function whenField(string $field, string $value): self { return $this->state([ 'ifs' => [ ['field' => $field, 'value' => $value, 'comparator' => 'isEqual'] ], ]); } public function toData(): Condition { return Condition::from($this->create()); } }