속성에 대한 고유 한 유효성 검사 규칙이있는 Laravel 업데이트 모델 및 User에 고유 한 유효성 검사 규칙 이있는 laravel 모델이 있습니다 . 내 저장소에서 모델을 업데이트 할 때 필요한 규칙 유효성 검사에 문제가 없도록 필드를 다시 유효성 검사합니다.usernameemail public function update($id, $data) { $user = $this->findById($id); $user->fill($data); $this->validate($user->toArray()); $user->save(); return $user; } 이것은 테스트에서 실패합니다. ValidationException: {"username":["The username has already been t..