© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•6mo ago•
2 replies
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())
});
\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
configureUsing
is still being applied, and the action is still a
iconButton
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(),
      ]);
  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
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Override configureUsing ?
FilamentFFilament / ❓┊help
16mo ago
Override Table Query
FilamentFFilament / ❓┊help
3y ago
conditional configureusing
FilamentFFilament / ❓┊help
2y ago