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 2788f4a commit 754bb97Copy full SHA for 754bb97
src/Traits/WithSorting.php
@@ -80,7 +80,7 @@ public function applySorting(Builder $builder): Builder
80
} elseif ($column->isBaseColumn()) {
81
$builder->orderBy($column->getColumnSelectName(), $direction);
82
} else {
83
- $builder->orderByRaw('`'.$column->getColumnSelectName().'`' . ' ' . $direction);
+ $builder->orderByRaw('"'.$column->getColumnSelectName().'"' . ' ' . $direction);
84
}
85
86
0 commit comments