From 8517e291ddf5bb8f239645befddf8922e61055aa Mon Sep 17 00:00:00 2001 From: Shipu Ahamed Date: Tue, 8 Aug 2023 02:45:59 +0600 Subject: [PATCH] initially get active theme from config --- src/Managers/Theme.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Managers/Theme.php b/src/Managers/Theme.php index c12cfc6..7ee8566 100755 --- a/src/Managers/Theme.php +++ b/src/Managers/Theme.php @@ -81,6 +81,8 @@ public function __construct(Container $app, ViewFinderInterface $finder, Reposit $this->basePath = $this->config['theme.theme_path']; + $this->activeTheme = $this->config['theme.active']; + $this->scanThemes(); }