Kenneth Sese

Results 3 issues of Kenneth Sese

## Description This PR allows `defaultSort()` to accept Livewire as a closure. ```php return $table ->defaultSort(function (Component $livewire) { return $livewire->activeTab === 'inStock' ? 'qty' : 'created_at'; }) ``` Of...

enhancement

## Proposed changes Currently the first field can never be matched due to array_search returning 0 as the key which is then interpreted as falsish. This is mentioned in the...