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 5fbaeb4 commit c2931fbCopy full SHA for c2931fb
src/Http/Livewire/LivewireDatatable.php
@@ -351,7 +351,7 @@ public function resolveAdditionalSelects($column)
351
return $selects->count() > 1
352
? new Expression("CONCAT_WS('" . static::SEPARATOR . "' ," .
353
collect($selects)->map(function ($select) {
354
- return "COALESCE($select, '')";
+ return 'COALESCE(' . $this->tablePrefix . $select . ', \'\')';
355
})->join(', ') . ')')
356
: $selects->first();
357
}
0 commit comments