Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

eugenefvdm's avatar

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?

1 like
3 replies
bobbybouwmann's avatar
Level 88

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.

1 like
beneyraheem's avatar

User withoutConfirmation, it will do the trick.

8 likes
aswinghosh's avatar

You can do it like

DuplicateOrder::make()->withoutConfirmation(),
2 likes

Please or to participate in this conversation.