name = $name; $this->nextValidator = $nextValidator; } public function isCurrentValid(): bool { $count = Company::where('name', $this->name)->count(); return $count != 0; } }