forked from laravel/pint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4862ffb
commit 102f593
Showing
1 changed file
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,33 @@ | ||
<?php | ||
|
||
return [ | ||
'cache' => false, | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| 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. | ||
| | ||
*/ | ||
|
||
'cache' => false, | ||
'compiled' => realpath(sys_get_temp_dir()), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| 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'), | ||
], | ||
|
||
]; |