livewire-datatables
livewire-datatables copied to clipboard
raw not working?
I have troubles with raw, even in its simplest form:
public function columns()
{
return [
Column::name('matricola'),
];
}
is perfectly fine.
public function columns()
{
return [
Column::raw('matricola as something'),
];
}
Too few arguments to function Illuminate\Database\Query\Expression::getValue(), 0 passed ... vendor\mediconesystems\livewire-datatables\src\Http\Livewire\LivewireDatatable.php on line 417 and exactly 1 expected
i'ms using MS SQL as db. did i misunderstood something?
It would be fixed in #591, but this repo has no activity.