© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•16mo ago
Mehmet K.

Repeater is not working in custom modal form.

I define a custom modal form in my table, I define a form for it and establish the hasmany relationship, but when I open the form, the repeater comes empty.

How can I solve this, what do you suggest?

Tables\Columns\TextColumn::make('relation_order_id')
->label(function () {
return new HtmlString("<span style='color: #0e82fc;'>İlişkili Kayıt No</span>");
})
->sortable()
->getStateUsing(function ($record) {
return new HtmlString("<span style='color: #111192; font-size: 14px; font-weight: bold;'>{$record->relation_order_id}</span>");
})
->searchable()
->action(
Action::make('openForm')
->form([
Repeater::make('qualifications')
->relationship()
->schema([
// ...
])
)]
->label('Detayları Göster')

->modalWidth('7xl')
)
->toggleable(),
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

Custom Form Repeater minItems is not working.
FilamentFFilament / ❓┊help
3y ago
Fill repeater in custom form in modal
FilamentFFilament / ❓┊help
3y ago
Custom modal inside repeater
FilamentFFilament / ❓┊help
2y ago
Refresh Custom Modal Form
FilamentFFilament / ❓┊help
3y ago