Table::prependActions does not exist.

This package is not working for me. composer require stechstudio/filament-impersonate
use Filament\Tables\Table;

public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('prefix'),
])
->prependActions([
//
]);
}
use Filament\Tables\Table;

public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('prefix'),
])
->prependActions([
//
]);
}
3 Replies
Saade
Saade2y ago
->prependActions() does not exist anymore. use ->actions() instead
Shaung Bhone
Shaung BhoneOP2y ago
Let me check Thank you

Did you find this page helpful?