We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3228a18 commit 650e20dCopy full SHA for 650e20d
src/CacheKey.php
@@ -210,6 +210,11 @@ protected function getOtherClauses(array $where) : string
210
$value .= $this->getValuesClause($where);
211
212
$column = "";
213
+
214
+ if (data_get($where, "column") instanceof Expression) {
215
+ $where["column"] = $this->expressionToString(data_get($where, "column"));
216
+ }
217
218
$column .= isset($where["column"]) ? $where["column"] : "";
219
$column .= isset($where["columns"]) ? implode("-", $where["columns"]) : "";
220
0 commit comments