how to refresh relationship manager table?

Hi, i have a drop in action button (plugin) on my form. After this action, my relation managers must be updated/refreshed.

My code:
DropInAction::make('test')
    ->disableLabel()
    ->execute(function (\Closure $get, \Closure $set, Livewire $livewire) {
        return \Filament\Forms\Components\Actions\Action::make('add_default_properties')
            ->icon('heroicon-o-plus')
            ->label('Varsayılan Özellikleri Ekle')
            ->action(function () use ($get, $livewire) {
                ... // <--- my code is in here
            });
    }),
Was this page helpful?