Skip to content

Commit

Permalink
Added configuration options for full page component
Browse files Browse the repository at this point in the history
  • Loading branch information
amshehzad committed Nov 2, 2023
1 parent 42f8fa4 commit 71c2602
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Traits/Configuration/ComponentConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,4 +275,32 @@ public function setSection(string $section): self

return $this;
}

public function setLayout(string $layout): self
{
$this->layout = $layout;

return $this;
}

public function setSlot(string $slot): self
{
$this->slot = $slot;

return $this;
}

public function setExtends(string $layout): self
{
$this->extends = $layout;

return $this;
}

public function setSection(string $section): self
{
$this->section = $section;

return $this;
}
}

0 comments on commit 71c2602

Please sign in to comment.