Setup some stuff for config caching.

This commit is contained in:
Taylor Otwell
2014-12-23 10:51:14 -06:00
parent 49cbb23ac5
commit 5ce23f1859
3 changed files with 8 additions and 5 deletions

View File

@@ -13,7 +13,9 @@ return [
|
*/
'paths' => [base_path('resources/templates')],
'paths' => [
realpath(base_path('resources/templates'))
],
/*
|--------------------------------------------------------------------------
@@ -26,6 +28,6 @@ return [
|
*/
'compiled' => storage_path().'/framework/views',
'compiled' => realpath(storage_path().'/framework/views'),
];