Skip to content

Commit

Permalink
feat: add ShowDeleted option
Browse files Browse the repository at this point in the history
  • Loading branch information
64knl committed Apr 7, 2023
1 parent c543480 commit d5f9158
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/NotFound/Layout/Inputs/LayoutInputRepeatable.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d5f9158

Please sign in to comment.