Tables\Columns\TextColumn::make('text')
->placeholder('No text.')
->action(function (Message $record, Table $table) {
$table->getAction('show-message-text-modal');
// I have access to the action
}),
Tables\Columns\TextColumn::make('text')
->placeholder('No text.')
->action(function (Message $record, Table $table) {
$table->getAction('show-message-text-modal');
// I have access to the action
}),