How to remove the default submit button from a modal
Opening a modal with a custom view, this view only displays a table so i dont need a submit button
Action::make('Medewerkers bekijken')
->modalContent(fn ($record): View => view(
'filament.resources.course-resource.pages.interests-overview-modal',
['record' => $record],
))
->modalContentFooter(
new HtmlString('')
)
->slideOver() ->modalSubmitAction(false)