->live() method to make the fields dependent on each other. at vendor/livewire/livewire/src/Features/SupportTesting/MakesAssertions.php:93
89▕
90▕ if (! is_string($value) && is_callable($value)) {
91▕ PHPUnit::assertTrue($value($actual));
92▕ } else {
➜ 93▕ $strict ? PHPUnit::assertSame($value, $actual) : PHPUnit::assertEquals($value, $actual);
94▕ }
95▕
96▕ return $this;
97▕ }