Cachet/config/view.php

43 lines
1.2 KiB
PHP
Raw Normal View History

2015-03-20 18:30:45 -06:00
<?php
/*
* This file is part of Cachet.
*
2015-07-06 17:37:01 +01:00
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2015-03-20 18:30:45 -06:00
return [
2015-03-20 18:32:24 -06:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2015-03-20 18:30:45 -06:00
2017-06-13 23:09:18 +01:00
'paths' => [
resource_path('views'),
],
2015-03-20 18:30:45 -06:00
2015-03-20 18:32:24 -06:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2015-03-20 18:30:45 -06:00
2016-03-24 15:29:11 +00:00
'compiled' => realpath(storage_path('framework/views')),
2015-03-20 18:30:45 -06:00
];