You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: