Fix layout call.

This commit is contained in:
James Cole 2020-11-26 06:32:07 +01:00
parent a78d7b9fec
commit 11e6410d7c
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -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))),
];