© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
3 replies
KeyMe

Livewire infolist component disappear on action/tab click

I displayed two livewire infolist component in a resource view page. The issue is when I click on any action button or relation manager tabs for example, the first component disappears. I've seen other posts tht explained its bcs im rendering more than one livewire comp. But I'm still not really sure on how to work it out for my case.

return $form
            ->schema([
                Livewire::make(StatusFlow::class, ['order' => $form->getRecord()]) //disappears
                    ->columnSpanFull(),
                Tabs::make('Label')
                    ->tabs([
                        Tabs\Tab::make('Order summary')
                            ->schema([
                                Livewire::make(OrderInfoList::class, ['order' => $form->getRecord()]), //works fine
                            ])
return $form
            ->schema([
                Livewire::make(StatusFlow::class, ['order' => $form->getRecord()]) //disappears
                    ->columnSpanFull(),
                Tabs::make('Label')
                    ->tabs([
                        Tabs\Tab::make('Order summary')
                            ->schema([
                                Livewire::make(OrderInfoList::class, ['order' => $form->getRecord()]), //works fine
                            ])
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

Relationmanager in Livewire Infolist component
FilamentFFilament / ❓┊help
2y ago
Using infolist actions inside livewire component
FilamentFFilament / ❓┊help
16mo ago
Snapshot missing on Livewire component - Header Action
FilamentFFilament / ❓┊help
3y ago
Table on livewire component is involuntarily refreshing component on Action
FilamentFFilament / ❓┊help
9mo ago