diff --git a/config/cache.php b/config/cache.php index 72e5aa9d..ce53b14c 100644 --- a/config/cache.php +++ b/config/cache.php @@ -53,7 +53,7 @@ return [ 'file' => [ 'driver' => 'file', - 'path' => storage_path().'/framework/cache', + 'path' => storage_path('framework/cache'), ], 'memcached' => [ diff --git a/config/filesystems.php b/config/filesystems.php index fb5e1521..35acb710 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -54,7 +54,7 @@ return [ 'local' => [ 'driver' => 'local', - 'root' => storage_path().'/app', + 'root' => storage_path('app'), ], 'public' => [ diff --git a/config/view.php b/config/view.php index 2bd842c4..7427ba13 100644 --- a/config/view.php +++ b/config/view.php @@ -22,9 +22,7 @@ return [ | */ - 'paths' => [ - realpath(base_path('resources/views')), - ], + 'paths' => [realpath(base_path('resources/views'))], /* |-------------------------------------------------------------------------- @@ -37,6 +35,6 @@ return [ | */ - 'compiled' => realpath(storage_path().'/framework/views'), + 'compiled' => realpath(storage_path('framework/views')), ];