Can i access $search value live in a table column?
Based on a search I need to display one table column which by default is hidden, is it possible to do that?
Solution:Jump to solution
Perhaps you could try something like:
```php
TextColumn::make('xxx')
->visible(function ($livewire) {...
1 Reply
Solution
Perhaps you could try something like:
🤔