From 11e6410d7cb19d8c427fe538a0b008e023c83e95 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 26 Nov 2020 06:32:07 +0100 Subject: [PATCH] Fix layout call. --- config/view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/view.php b/config/view.php index 3ddde9fb1e..88dcd694b2 100644 --- a/config/view.php +++ b/config/view.php @@ -41,7 +41,7 @@ return [ */ 'paths' => [ - realpath(base_path(sprintf('resources/views/%s', $layout ?? 'v1'))), + realpath(base_path(sprintf('resources/views/%s', $layout))), ], /* @@ -55,6 +55,6 @@ return [ | */ - 'compiled' => realpath(storage_path(sprintf('framework/views/%s', $layout ?? 'v1'))), + 'compiled' => realpath(storage_path(sprintf('framework/views/%s', $layout))), ];