© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•13mo ago•
4 replies
billyma121182

Infolist link not clickable

I have added a link to an infolist using the code from the documentation and it there are no errors its just not creating a clickable link. Sure I'm jusrt being dumb but cant see why...
Thanks anybody!

TextEntry::make('Add Item')
->url(fn (Order $record): string => route('createItem', ['id' => $record])),
Solution
use Filament\Infolists\Components\Actions;
use Filament\Infolists\Components\Actions\Action;

..

Actions::make([
    Action::make('addItem')
        ->link()
        ->url(fn(Order $record): string => route('createItem', ['id' => $record])),
])
use Filament\Infolists\Components\Actions;
use Filament\Infolists\Components\Actions\Action;

..

Actions::make([
    Action::make('addItem')
        ->link()
        ->url(fn(Order $record): string => route('createItem', ['id' => $record])),
])

?
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Filament TextInput Clickable External link
FilamentFFilament / ❓┊help
2y ago
infolist not woking?
FilamentFFilament / ❓┊help
3y ago
Infolist not showing
FilamentFFilament / ❓┊help
3y ago
How do I create an Infolist Link?
FilamentFFilament / ❓┊help
3y ago