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([
            //
        ]);
}
Was this page helpful?