laradocs 3 년 전
부모
커밋
0b745a5e75
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Form/Field/Embeds.php

+ 1 - 1
src/Form/Field/Embeds.php

@@ -278,7 +278,7 @@ class Embeds extends Field
     public function findFieldByName($name)
     {
         return $this->buildEmbeddedForm()->fields()->first(function (Field $field) use ($name) {
-            return $field->column() === $name;
+            return $field->column() == $name;
         });
     }
 }