Confirm before DELETE #1598
Unanswered
SuGDevelopers
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I add a confirmation before making a deletion?
example:
`<button
type="button"
wire:click="delete"
wire:confirm="Are you sure you want to delete this post?"
`
I habe
#[On('deleteJob')] public function deleteJob(string $identifier, int $orderId) { $this->js('prompt(\'' . __(sprintf('Are you sure to DELETE Order %s with ID %s?\n\nType DELETE to confirm|DELETE', $orderId, $identifier)) . '\');'); logic... }
but not working
thank
Beta Was this translation helpful? Give feedback.
All reactions