|
17 | 17 |
|
18 | 18 | /*
|
19 | 19 | |--------------------------------------------------------------------------
|
20 |
| - | Public Path |
| 20 | + | Base Path |
21 | 21 | |--------------------------------------------------------------------------
|
22 | 22 | |
|
23 |
| - | The public path contains the assets for your web application, such as |
24 |
| - | your JavaScript and CSS files, and also contains the primary entry |
25 |
| - | point for web requests into these applications from the outside. |
| 23 | + | The base path is the root of the Laravel installation. Most likely you |
| 24 | + | will not need to change this value. But, if for some wild reason it |
| 25 | + | is necessary you will do so here, just proceed with some caution. |
26 | 26 | |
|
27 | 27 | */
|
28 | 28 |
|
29 |
| - 'public' => __DIR__.'/../public', |
| 29 | + 'base' => __DIR__.'/..', |
30 | 30 |
|
31 | 31 | /*
|
32 | 32 | |--------------------------------------------------------------------------
|
33 |
| - | Base Path |
| 33 | + | Configuration Path |
34 | 34 | |--------------------------------------------------------------------------
|
35 | 35 | |
|
36 |
| - | The base path is the root of the Laravel installation. Most likely you |
37 |
| - | will not need to change this value. But, if for some wild reason it |
38 |
| - | is necessary you will do so here, just proceed with some caution. |
| 36 | + | This path is used by the configuration loader to load the application |
| 37 | + | configuration files. In general, you should'nt need to change this |
| 38 | + | value; however, you can theoretically change the path from here. |
39 | 39 | |
|
40 | 40 | */
|
41 | 41 |
|
42 |
| - 'base' => __DIR__.'/..', |
| 42 | + 'config' => __DIR__.'/../config', |
43 | 43 |
|
44 | 44 | /*
|
45 | 45 | |--------------------------------------------------------------------------
|
46 |
| - | Storage Path |
| 46 | + | Database Path |
47 | 47 | |--------------------------------------------------------------------------
|
48 | 48 | |
|
49 |
| - | The storage path is used by Laravel to store cached Blade views, logs |
50 |
| - | and other pieces of information. You may modify the path here when |
51 |
| - | you want to change the location of this directory for your apps. |
| 49 | + | This path is used by the migration generator and migration runner to |
| 50 | + | know where to place your fresh database migration classes. You're |
| 51 | + | free to modify the path but you probably will not ever need to. |
52 | 52 | |
|
53 | 53 | */
|
54 | 54 |
|
55 |
| - 'storage' => __DIR__.'/../storage', |
| 55 | + 'database' => __DIR__.'/../database', |
56 | 56 |
|
57 | 57 | /*
|
58 | 58 | |--------------------------------------------------------------------------
|
59 |
| - | Generator Paths |
| 59 | + | Language Path |
60 | 60 | |--------------------------------------------------------------------------
|
61 | 61 | |
|
62 |
| - | These paths are used by the various class generators and other pieces |
63 |
| - | of the framework that need to determine where to store these types |
64 |
| - | of classes. Of course, they may be changed to any path you wish. |
| 62 | + | This path is used by the language file loader to load your application |
| 63 | + | language files. The purpose of these files is to store your strings |
| 64 | + | that are translated into other languages for views, e-mails, etc. |
65 | 65 | |
|
66 | 66 | */
|
67 | 67 |
|
68 |
| - 'console' => __DIR__.'/../app/Console', |
69 |
| - 'config' => __DIR__.'/../config', |
70 |
| - 'controllers' => __DIR__.'/../app/Http/Controllers', |
71 |
| - 'database' => __DIR__.'/../database', |
72 |
| - 'filters' => __DIR__.'/../app/Http/Filters', |
73 | 68 | 'lang' => __DIR__.'/../resources/lang',
|
74 |
| - 'providers' => __DIR__.'/../app/Providers', |
75 |
| - 'requests' => __DIR__.'/../app/Http/Requests', |
| 69 | + |
| 70 | + /* |
| 71 | + |-------------------------------------------------------------------------- |
| 72 | + | Public Path |
| 73 | + |-------------------------------------------------------------------------- |
| 74 | + | |
| 75 | + | The public path contains the assets for your web application, such as |
| 76 | + | your JavaScript and CSS files, and also contains the primary entry |
| 77 | + | point for web requests into these applications from the outside. |
| 78 | + | |
| 79 | + */ |
| 80 | + |
| 81 | + 'public' => __DIR__.'/../public', |
| 82 | + |
| 83 | + /* |
| 84 | + |-------------------------------------------------------------------------- |
| 85 | + | Storage Path |
| 86 | + |-------------------------------------------------------------------------- |
| 87 | + | |
| 88 | + | The storage path is used by Laravel to store cached Blade views, logs |
| 89 | + | and other pieces of information. You may modify the path here when |
| 90 | + | you want to change the location of this directory for your apps. |
| 91 | + | |
| 92 | + */ |
| 93 | + |
| 94 | + 'storage' => __DIR__.'/../storage', |
76 | 95 |
|
77 | 96 | ];
|
0 commit comments