add env variable for compiled view path

This commit is contained in:
Taylor Otwell 2018-11-20 21:46:11 -06:00
parent c09519f547
commit 5ea6fe18a8

View File

@ -28,6 +28,9 @@ return [
|
*/
'compiled' => realpath(storage_path('framework/views')),
'compiled' => env(
'VIEW_COMPILED_PATH',
realpath(storage_path('framework/views'))
),
];