summaryrefslogtreecommitdiff
path: root/ssh/config/view.php
diff options
context:
space:
mode:
authordev2026-06-27 05:34:00 +0200
committerdev2026-06-27 05:34:00 +0200
commitb608ced142cd0527906b554e04376292f718f084 (patch)
tree6f6937b35b902db3f0bca6476000dd61e3fcc85d /ssh/config/view.php
parent0fe83c7f76b2fd6ce79541a71cdde5ec0b12becf (diff)
parent043dd3ed90cac67975996bd881a997f38679bacd (diff)
downloadcurious-b608ced142cd0527906b554e04376292f718f084.tar.gz
Merged cinema into mostdiscussed.com
Diffstat (limited to 'ssh/config/view.php')
-rw-r--r--ssh/config/view.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/ssh/config/view.php b/ssh/config/view.php
new file mode 100644
index 0000000..bc73d32
--- /dev/null
+++ b/ssh/config/view.php
@@ -0,0 +1,49 @@
+<?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' => [
+ resource_path('views'),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | 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.
+ |
+ */
+
+ 'compiled' => env(
+ 'VIEW_COMPILED_PATH',
+ realpath(storage_path('framework/views'))
+ ),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Blade View Modification Checking
+ |--------------------------------------------------------------------------
+ |
+ | On every request the framework will check to see if a view has expired
+ | to determine if it needs to be recompiled. If you are in production
+ | and precompiling views this feature may be disabled to save time.
+ |
+ */
+
+ 'expires' => env('VIEW_CHECK_EXPIRATION', true),
+
+];