webhookId = $webhookId; $this->webhookName = $webhook->name; } public function delete(): void { Webhook::findOrFail($this->webhookId)->delete(); $this->dispatch('webhook-saved'); $this->closeModal(); } public function render() { return view('livewire.ui.system.modal.webhook-delete-modal'); } }