2018-05-09 08:05:17 -05:00
|
|
|
<?php
|
|
|
|
|
2019-02-14 08:08:38 -06:00
|
|
|
/*
|
|
|
|
| !!!! DO NOT EDIT THIS FILE !!!!
|
|
|
|
|
|
|
|
|
| You can change settings by setting them in the environment or .env
|
|
|
|
| If there is something you need to change, but is not available as an environment setting,
|
|
|
|
| request an environment variable to be created upstream or send a pull request.
|
|
|
|
*/
|
|
|
|
|
2018-05-09 08:05:17 -05:00
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| View Storage Paths
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Most templating systems load templates from disk. Here you may specify
|
|
|
|
| an array of paths that should be checked for your views. Of course
|
|
|
|
| the usual Laravel view path has already been registered for you.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'paths' => [
|
|
|
|
resource_path('views'),
|
|
|
|
],
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Compiled View Path
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This option determines where all the compiled Blade templates will be
|
|
|
|
| stored for your application. Typically, this is within the storage
|
|
|
|
| directory. However, as usual, you are free to change this value.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2019-02-12 17:45:04 -06:00
|
|
|
'compiled' => env(
|
|
|
|
'VIEW_COMPILED_PATH',
|
|
|
|
realpath(storage_path('framework/views'))
|
|
|
|
),
|
2018-05-09 08:05:17 -05:00
|
|
|
|
|
|
|
];
|