From 71c26025cb7b921062ae1c76bed500114a5bb6c9 Mon Sep 17 00:00:00 2001 From: Abdul Majeed Shehzad Date: Fri, 20 Oct 2023 01:56:44 +0500 Subject: [PATCH] Added configuration options for full page component --- .../Configuration/ComponentConfiguration.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/Traits/Configuration/ComponentConfiguration.php b/src/Traits/Configuration/ComponentConfiguration.php index 043b8e1c1..1efbb781c 100644 --- a/src/Traits/Configuration/ComponentConfiguration.php +++ b/src/Traits/Configuration/ComponentConfiguration.php @@ -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; + } }