@@ -12,8 +12,8 @@ can change to meet the needs of your application.
1212Default Directories
1313*******************
1414
15- A fresh install has five directories: ``/ app ``, ``/ public ``,
16- ``/ writable ``, ``/ tests `` and ``/system `` or ``/vendor ``.
15+ A fresh install has five directories: ``app/ ``, ``public/ ``,
16+ ``writable/ ``, ``tests/ `` and ``vendor/ `` or ``system/ ``.
1717Each of these directories has a very specific part to play.
1818
1919app
@@ -24,17 +24,17 @@ structure that works well for many applications. The following folders make up t
2424
2525.. code-block :: none
2626
27- / app
28- / Config Stores the configuration files
29- / Controllers Controllers determine the program flow
30- / Database Stores the database migrations and seeds files
31- / Filters Stores filter classes that can run before and after controller
32- / Helpers Helpers store collections of standalone functions
33- / Language Multiple language support reads the language strings from here
34- / Libraries Useful classes that don't fit in another category
35- / Models Models work with the database to represent the business entities.
36- / ThirdParty ThirdParty libraries that can be used in application
37- / Views Views make up the HTML that is displayed to the client.
27+ app/
28+ Config/ Stores the configuration files
29+ Controllers/ Controllers determine the program flow
30+ Database/ Stores the database migrations and seeds files
31+ Filters/ Stores filter classes that can run before and after controller
32+ Helpers/ Helpers store collections of standalone functions
33+ Language/ Multiple language support reads the language strings from here
34+ Libraries/ Useful classes that don't fit in another category
35+ Models/ Models work with the database to represent the business entities
36+ ThirdParty/ ThirdParty libraries that can be used in application
37+ Views/ Views make up the HTML that is displayed to the client
3838
3939 Because the ``app `` directory is already namespaced, you should feel free to modify the structure
4040of this directory to suit your application's needs. For example, you might decide to start using the Repository
0 commit comments