laradocs hace 3 años
padre
commit
0b745a5e75
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
         });
     }
 }