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:Jump to solution
```php
use Filament\Infolists\Components\Actions;
use Filament\Infolists\Components\Actions\Action;
.....
2 Replies
Solution
?
Brilliant! Thanks so much.