© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•14mo ago•
4 replies
kazi94

Modal hidden when i open another nested modal

I have this piece of code inside my modal, which open a modal


->suffixAction(
Action::make('Détails')
->modalSubmitAction(false)
->color('primary')

->icon('heroicon-o-information-circle')
->modalAlignment(Alignment::Center)
->modalWidth(MaxWidth::Small)
->modalContent(
fn(Get $get, RelationManager $livewire): View => view(
'filament.pages.actions.preconisation-farm-details',
[
'farm' => Farm::with('unit')
->where('culture_id', $get('culture_id'))
->where('farmer_id', $livewire->getOwnerRecord()['id'])
->first()
],
)
)
),

The expected results is when i open the nested modal it hide the first modal which reopen after i close the second modal

Is there any ways to avoid this behavior?

Thanks to you Sir
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

open modal from another modal
FilamentFFilament / ❓┊help
3y ago
Open another form modal from a form modal
FilamentFFilament / ❓┊help
10mo ago
How to Open Another Modal from Action Modal?
FilamentFFilament / ❓┊help
3y ago
Nested modal
FilamentFFilament / ❓┊help
2y ago