paths.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Path
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here we just defined the path to the application directory. Most likely
  9. | you will never need to change this value as the default setup should
  10. | work perfectly fine for the vast majority of all our applications.
  11. |
  12. */
  13. 'app' => __DIR__.'/../app',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Public Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | The public path contains the assets for your web application, such as
  20. | your JavaScript and CSS files, and also contains the primary entry
  21. | point for web requests into these applications from the outside.
  22. |
  23. */
  24. 'public' => __DIR__.'/../public',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Base Path
  28. |--------------------------------------------------------------------------
  29. |
  30. | The base path is the root of the Laravel installation. Most likely you
  31. | will not need to change this value. But, if for some wild reason it
  32. | is necessary you will do so here, just proceed with some caution.
  33. |
  34. */
  35. 'base' => __DIR__.'/..',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Storage Path
  39. |--------------------------------------------------------------------------
  40. |
  41. | The storage path is used by Laravel to store cached Blade views, logs
  42. | and other pieces of information. You may modify the path here when
  43. | you want to change the location of this directory for your apps.
  44. |
  45. */
  46. 'storage' => __DIR__.'/../app/storage',
  47. );