From f6ea995be2b010784464a095be322e9b041442bf Mon Sep 17 00:00:00 2001 From: Abdulbasit Rubeya Date: Tue, 24 Sep 2024 01:18:52 +0300 Subject: [PATCH] Return the blade instance from the configuration method --- src/Blade.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Blade.php b/src/Blade.php index 9c6dd3d..5049ed7 100644 --- a/src/Blade.php +++ b/src/Blade.php @@ -17,6 +17,7 @@ public function __construct(string $viewPaths = null, string $cachePath = null) public function configure(string $viewPaths, string $cachePath) { $this->blade = new \Jenssegers\Blade\Blade($viewPaths, $cachePath); + return $this->blade; } /**