© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
10 replies
Mark Chaney

Table Action Url() on Column

So i have an Action that I use in a bunch of different places and how it behaves is based on an app config. So I have a table and i have the action used on the first column of the table and the action at the end of the table. Now for troubleshooting purposes, ive simplified it down down to this
TextColumn::make('name')
    ->action(
        \Filament\Tables\Actions\Action::make('view_property')
            ->url(function ($record): string {
                return route('properties.show', $record->id);
            })
    ),
TextColumn::make('name')
    ->action(
        \Filament\Tables\Actions\Action::make('view_property')
            ->url(function ($record): string {
                return route('properties.show', $record->id);
            })
    ),
, which fails to launch there, but fine again in actions(). Ive tried changing the action name, no difference. When i click on it, its sending a network request, but not performing the action of going to the url. Since its a url(), shouldnt even show the address on hover, which its not?
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

Custom action for clickable url column
FilamentFFilament / ❓┊help
3y ago
Action button within Custom Table Column
FilamentFFilament / ❓┊help
3y ago
adding table filter in action->url()
FilamentFFilament / ❓┊help
3y ago
Filament Table Text Column action not firing
FilamentFFilament / ❓┊help
16mo ago