We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 296fac2 commit 324d4f9Copy full SHA for 324d4f9
src/Jenssegers/Mongodb/Eloquent/Model.php
@@ -535,6 +535,17 @@ protected function newBaseQueryBuilder()
535
536
return new QueryBuilder($connection, $connection->getPostProcessor());
537
}
538
+
539
+ /**
540
+ * We just return original key here in order to support keys in dot-notation
541
+ *
542
+ * @param string $key
543
+ * @return string
544
+ */
545
+ protected function removeTableFromKey($key)
546
+ {
547
+ return $key;
548
+ }
549
550
/**
551
* Handle dynamic method calls into the method.
0 commit comments