phpvms/config/view.php

27 lines
661 B
PHP
Raw Permalink Normal View History

2017-06-09 02:28:26 +08:00
<?php
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' => [
2017-12-17 12:07:58 +08:00
resource_path('views'),
2017-06-09 02:28:26 +08: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.
*/
2017-12-17 12:07:58 +08:00
'compiled' => storage_path('framework/views'),
2017-06-09 02:28:26 +08:00
];