From 77f1076c15fbb8bf826a58cb2d556801a82a81ee Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 09:52:37 -0500 Subject: - Add laravel site directories --- laravel/config/view.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 laravel/config/view.php (limited to 'laravel/config/view.php') diff --git a/laravel/config/view.php b/laravel/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/laravel/config/view.php @@ -0,0 +1,36 @@ + [ + 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')) + ), + +]; -- cgit 1.4.1