© 2026 Hedgehog Software, LLC

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

How come state breaks infolist

<x-filament-panels::page>
{{ $this->infolist }}
<x-filament-panels::form wire:submit="save">
{{ $this->form }}
<x-filament-panels::form.actions
:actions="$this->getCachedFormActions()"
:full-width="$this->hasFullWidthFormActions()"
/>
</x-filament-panels::form>
</x-filament-panels::page>

When save is clicked the following funciton runs.

public function save(): void
{

try {

$data = $this->form->getState(); // this breaks the info list. My infolist has nothing to do with $this-form.

$this->handleRecordUpdate($this->record, $data);

} catch (Halt $exception) {
return;
}

$this->getSavedNotification()->send();
}


How can I save it without getState triggering a reload of my infolist ?
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

hasCombinedRelationManagerTabsWithContent together with infolist breaks
FilamentFFilament / ❓┊help
17mo ago
State context in infolist
FilamentFFilament / ❓┊help
16mo ago
Infolist Repeatable with custom state
FilamentFFilament / ❓┊help
12mo ago
Infolist has no [record()] or [state()] set.
FilamentFFilament / ❓┊help
2y ago