How to trigger an action from a TextColumn
Hello, how can we trigger an action from a table column?
Here's my text column
And this is my action that I want to trigger
Solution:Jump to solution
Found the answer
```php
->action(function (Reservation $record, $livewire) {
$livewire->mountTableAction('writeReview', $record->id);
}...
2 Replies
I've tried this, but not working
$table->getAction('writeReview');
Solution
Found the answer