Skip to content

Commit

Permalink
Adds pretty comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jun 17, 2022
1 parent 4862ffb commit 102f593
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion config/view.php
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'),
],

];

0 comments on commit 102f593

Please sign in to comment.