M.Nowocyn

Results 5 comments of M.Nowocyn

Is this issue fixed with https://github.com/MedicOneSystems/livewire-datatables/pull/568 ?

Someone has to create a new version-tag for the master branch. If you use "dev-master" it will work at the moment. @thyseus could you create a new version-tag for composer?

@mehmetali-samioglu does your error still appears after the last update of livewire-datatables? Otherwise this could be closed.

What are you trying to archive? To have your table-header called "serial number" or you try to get the sql column "serial number" both could be achived. Or you could...

You could use something like this: ```PHP class Table extends LivewireDatatable { public $hideable = 'select'; public $sort = "serial_number|asc"; public $model = Model::class; public function builder() { return Model::query();...