© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2mo ago•
24 replies
Hehahohu

Modal infolist RepeatableEntry table is bugged?

✅ Solved4️⃣v4
use Filament\Infolists\Components\RepeatableEntry\TableColumn;

        return $schema
            ->components([
                TextEntry::make('name'),
                TextEntry::make('country'),
                TextEntry::make('website'),
                TextEntry::make('support'),
                RepeatableEntry::make('models')
                    ->contained(false)
                    ->table([
                        TableColumn::make('Model Name'),
                        TableColumn::make('Model Code'),
                    ])
                    ->schema([
                        TextEntry::make('model_code')
                            ->hiddenLabel(),
                        TextEntry::make('model_name')
                    ]),
            ]);
use Filament\Infolists\Components\RepeatableEntry\TableColumn;

        return $schema
            ->components([
                TextEntry::make('name'),
                TextEntry::make('country'),
                TextEntry::make('website'),
                TextEntry::make('support'),
                RepeatableEntry::make('models')
                    ->contained(false)
                    ->table([
                        TableColumn::make('Model Name'),
                        TableColumn::make('Model Code'),
                    ])
                    ->schema([
                        TextEntry::make('model_code')
                            ->hiddenLabel(),
                        TextEntry::make('model_name')
                    ]),
            ]);


The output is as shown in the picture. Can anyone help me on how to fix this?
image.png
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

infolist with RepeatableEntry
FilamentFFilament / ❓┊help
3y ago
Infolist RepeatableEntry with an Array
FilamentFFilament / ❓┊help
9mo ago
Infolist RepeatableEntry view entry action.
FilamentFFilament / ❓┊help
9mo ago
Infolist RepeatableEntry not working properly
FilamentFFilament / ❓┊help
3y ago