© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•6mo ago•
3 replies
conradh

Repeater with ->table( is not showing as table

I tried to replicate the example from the docs and want to display a repater table in a form. The following code shows a regular repated form - not in a table.

class ContainerForm
{
    public static function configure(Schema $schema): Schema
    {
        return $schema
            ->components([
                Repeater::make('invitations')
                    ->table([
                        TableColumn::make('Name'),
                        TableColumn::make('Role'),
                    ])
                    ->schema([
                        TextInput::make('name')
                            ->required(),
                        Select::make('role')
                            ->options([
                                'member' => 'Member',
                                'administrator' => 'Administrator',
                                'owner' => 'Owner',
                            ])
                            ->required(),
                    ])
                ]);
    }
}
class ContainerForm
{
    public static function configure(Schema $schema): Schema
    {
        return $schema
            ->components([
                Repeater::make('invitations')
                    ->table([
                        TableColumn::make('Name'),
                        TableColumn::make('Role'),
                    ])
                    ->schema([
                        TextInput::make('name')
                            ->required(),
                        Select::make('role')
                            ->options([
                                'member' => 'Member',
                                'administrator' => 'Administrator',
                                'owner' => 'Owner',
                            ])
                            ->required(),
                    ])
                ]);
    }
}


Is there something wrong? Filament 4.0.1 with Laravel 12.24, PHP 8.3.24
Bildschirmfoto_2025-08-18_um_20.37.43.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

Repeater field is not showing as a table
FilamentFFilament / ❓┊help
5mo ago
Repeater with pivot table
FilamentFFilament / ❓┊help
11mo ago
Repeater not showing all rows
FilamentFFilament / ❓┊help
8mo ago
table action not showing
FilamentFFilament / ❓┊help
12mo ago