view.php 925 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | View Storage Paths
  6. |--------------------------------------------------------------------------
  7. |
  8. | Most templating systems load templates from disk. Here you may specify
  9. | an array of paths that should be checked for your views. Of course
  10. | the usual Laravel view path has already been registered for you.
  11. |
  12. */
  13. 'paths' => [base_path('resources/templates')],
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Compiled View Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | This option determines where all the compiled Blade templates will be
  20. | stored for your application. Typically, this is within the storage
  21. | directory. However, as usual, you are free to change this value.
  22. |
  23. */
  24. 'compiled' => storage_path().'/framework/views',
  25. ];