Disable/Hide all Action Modal Buttons

Is it possible to hide all action modal submit/cancel buttons. I just want to show some info in a popup modal. Is there anothey way of doing this?
Solution
You could pass an empty array to the modalFooterActions of your action
Tables\Actions\Action::make('dummy')
  ->modalFooterActions(fn () => [])
Was this page helpful?