How to remove the default submit button from a modal

  Action::make('Medewerkers bekijken')
               
                ->modalContent(fn ($record): View => view(
                    'filament.resources.course-resource.pages.interests-overview-modal',
                    ['record' => $record],
                ))
                ->modalContentFooter(
                    new HtmlString('')
                )
                ->slideOver()

Opening a modal with a custom view, this view only displays a table so i dont need a submit button
Solution
 ->modalSubmitAction(false)


found it
Was this page helpful?