© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
8 replies
Jerome V

How to add table inside the tab content?

I have a task to create a view page on users. The scope is every tab content is different page/component so that it will not load heavily..

All the tabs are tables content

example.. in my UserResource I created infolist for tab

 public static function infolist(Infolist $infolist): Infolist
    {
        return $infolist
            ->schema([
                Tabs::make('Tabs')
                    ->tabs([
                        Tabs\Tab::make('Users')
                            ->icon('heroicon-m-user-group')
                            ->schema([

                            ]),
                        Tabs\Tab::make('Subscriptions')
                            ->schema([
                                // ...
                            ]),
                        Tabs\Tab::make('Favorites')
                            ->schema([
                                // ...
                            ]),
                    ])
            ]);
    }
 public static function infolist(Infolist $infolist): Infolist
    {
        return $infolist
            ->schema([
                Tabs::make('Tabs')
                    ->tabs([
                        Tabs\Tab::make('Users')
                            ->icon('heroicon-m-user-group')
                            ->schema([

                            ]),
                        Tabs\Tab::make('Subscriptions')
                            ->schema([
                                // ...
                            ]),
                        Tabs\Tab::make('Favorites')
                            ->schema([
                                // ...
                            ]),
                    ])
            ]);
    }


How to attached/make users table in the user tab? I want to test this first and follow other tabs

1. by inserting directy the table? or
2. make a livewire component then render ?
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

how render a table inside a tab?
FilamentFFilament / ❓┊help
16mo ago
table builder inside a tab
FilamentFFilament / ❓┊help
3y ago
add widget inside the table view
FilamentFFilament / ❓┊help
2y ago
Add table inside wizard form
FilamentFFilament / ❓┊help
2y ago