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 44eee22 commit cb71e6fCopy full SHA for cb71e6f
src/Http/Livewire/LivewireDatatable.php
@@ -516,6 +516,7 @@ public function initialiseHiddenColumns()
516
if (session()->has($this->sessionStorageKey() . $this->name . '_hidden_columns')) {
517
$this->columns = collect($this->columns)->map(function ($column, $index) {
518
$column['hidden'] = in_array($index, session()->get($this->sessionStorageKey() . $this->name . '_hidden_columns'));
519
+
520
return $column;
521
})->toArray();
522
}
0 commit comments