paths.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. return [
  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. | Base Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | The base path is the root of the Laravel installation. Most likely you
  20. | will not need to change this value. But, if for some wild reason it
  21. | is necessary you will do so here, just proceed with some caution.
  22. |
  23. */
  24. 'base' => __DIR__.'/..',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Configuration Path
  28. |--------------------------------------------------------------------------
  29. |
  30. | This path is used by the configuration loader to load the application
  31. | configuration files. In general, you should'nt need to change this
  32. | value; however, you can theoretically change the path from here.
  33. |
  34. */
  35. 'config' => __DIR__.'/../config',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Database Path
  39. |--------------------------------------------------------------------------
  40. |
  41. | This path is used by the migration generator and migration runner to
  42. | know where to place your fresh database migration classes. You're
  43. | free to modify the path but you probably will not ever need to.
  44. |
  45. */
  46. 'database' => __DIR__.'/../database',
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Language Path
  50. |--------------------------------------------------------------------------
  51. |
  52. | This path is used by the language file loader to load your application
  53. | language files. The purpose of these files is to store your strings
  54. | that are translated into other languages for views, e-mails, etc.
  55. |
  56. */
  57. 'lang' => __DIR__.'/../resources/lang',
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Public Path
  61. |--------------------------------------------------------------------------
  62. |
  63. | The public path contains the assets for your web application, such as
  64. | your JavaScript and CSS files, and also contains the primary entry
  65. | point for web requests into these applications from the outside.
  66. |
  67. */
  68. 'public' => __DIR__.'/../public',
  69. /*
  70. |--------------------------------------------------------------------------
  71. | Storage Path
  72. |--------------------------------------------------------------------------
  73. |
  74. | The storage path is used by Laravel to store cached Blade views, logs
  75. | and other pieces of information. You may modify the path here when
  76. | you want to change the location of this directory for your apps.
  77. |
  78. */
  79. 'storage' => __DIR__.'/../storage',
  80. ];