view.php 1.2 KB

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