© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•17mo ago•
2 replies
giapele

nested repeater with forms Actions Component

I have this stracture and I can't retrieve the cardId on the Action AssignUsers. The record has tasklist model and the arguments is empty. Can Anybody help
Repeater::make('Tasklists')
->relationship('tasklists') // Tells Filament this is a relationship
->schema([
Repeater::make('Cards')
->relationship('cards') // Tells Filament this is a relationship
->schema([...])
->extraItemActions([
Action::make('editCard')
->mountUsing(function (Forms\ComponentContainer $form, $record, array $arguments) {
preg_match_all('/\d+/', $arguments['item'], $cardId);
$cardId = $cardId[0][0];
...
]);
->form([
Split::make([
Section::make([
...
]),
Section::make([
Actions::make([
Action::make("Assign Users")
->form([
TextInput::make('name'),
...
])
->mountUsing(function (Forms\ComponentContainer $form, $record, array $arguments) {
})
])
])->grow(false),
])
])
])
])
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Nested Repeater
FilamentFFilament / ❓┊help
2y ago
move repeater actions inline with the components
FilamentFFilament / ❓┊help
2y ago
Filament\Forms\ComponentContainer::Filament\Forms\Concerns\{closure}(): Argument #1 ($component) mus
FilamentFFilament / ❓┊help
3y ago
nested repeater extraItemActions
FilamentFFilament / ❓┊help
17mo ago