From d5f9158973387682d2ae46c5a95092cffd064690 Mon Sep 17 00:00:00 2001 From: Rene Date: Fri, 7 Apr 2023 10:59:33 +0200 Subject: [PATCH] feat: add ShowDeleted option --- src/NotFound/Layout/Inputs/LayoutInputRepeatable.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/NotFound/Layout/Inputs/LayoutInputRepeatable.php b/src/NotFound/Layout/Inputs/LayoutInputRepeatable.php index 26e28f0..77dcd97 100644 --- a/src/NotFound/Layout/Inputs/LayoutInputRepeatable.php +++ b/src/NotFound/Layout/Inputs/LayoutInputRepeatable.php @@ -17,6 +17,12 @@ public function setForm(LayoutForm $form) $this->properties->template = $form->build()->items; } + public function showDeleted(): self + { + $this->properties->showDeleted = true; + return $this; + } + public function setValue(mixed $value): self { $this->value = $value;