path = $path; $this->title = $title ?? 'Your Title'; $this->message = $message ?? 'Your Message'; $this->id = $id; $this->dirty = $dirty; $this->name = $name ?? 'Cancel'; $this->loading = $loading; } public function showModal() { $this->visible = true; } public function handleCancel() { $this->visible = false; } public function render() { return view('livewire.modal-cancel'); } }