Is it possible to bypass "Confirm Action" in Nova I have a specific application, in this case, "Generate PDF", which is a Nova Action.
I feel after selecting "Generate PDF" from the dropdown, and then also pressing "play button", it's unneeded to confirm action.
Is it possible to bypass confirm action in Nova?
Sadly this is not supported by Nova at the moment and probably won't be supported in the future. You can read more about it here: https://github.com/laravel/nova-issues/issues/1167
The only thing you can do is override the whole action stuff in Nova, but I've never seen someone do that. It would also defeat the purpose of using Nova. You would be better of building your own CMS then.
User withoutConfirmation, it will do the trick.
You can do it like
DuplicateOrder::make()->withoutConfirmation(),
Please sign in or create an account to participate in this conversation.