FilamentF
Filament5mo ago
Tieme

Override Table::configureUsing

Hi All,

I have below in my app service provider

\Filament\Tables\Table::configureUsing(function (\Filament\Tables\Table $table): void {
    $table
        ->modifyUngroupedRecordActionsUsing(fn (Action $action) => $action->iconButton())
});


Now i have a table where i need the action to be a link.

i have tried below, but the configureUsing is still being applied, and the action is still a iconButton, Is this a bug or a feature?

  return $table
      ->columns([
          View::make('filament.user.resources.companies.table.columns.company'),
      ])
      ->recordActions([
          ViewAction::make()
              ->label(__('filament-actions::view.single.label'))
              ->link(),
      ]);


Thanks for the support
Was this page helpful?