Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/view.php
7382 views
1
<?php
2
3
return [
4
/*
5
|--------------------------------------------------------------------------
6
| View Storage Paths
7
|--------------------------------------------------------------------------
8
|
9
| Most templating systems load templates from disk. Here you may specify
10
| an array of paths that should be checked for your views. Of course
11
| the usual Laravel view path has already been registered for you.
12
|
13
*/
14
15
'paths' => [
16
resource_path('views'),
17
],
18
19
/*
20
|--------------------------------------------------------------------------
21
| Compiled View Path
22
|--------------------------------------------------------------------------
23
|
24
| This option determines where all the compiled Blade templates will be
25
| stored for your application. Typically, this is within the storage
26
| directory. However, as usual, you are free to change this value.
27
|
28
*/
29
30
'compiled' => env(
31
'VIEW_COMPILED_PATH',
32
realpath(storage_path('framework/views'))
33
),
34
];
35
36