Laravel directory structure

S/N DIRECTORY DESCRIPTION
1 /app contains all of your application code
2 /app/Console contains all of your artisan commands
3 /app/Events contains event classes
4 /app/Exceptions contains exception handling classes
5 /app/Http contains controllers, filters, and requests
6 /app/Jobs contains jobs that can be queued
7 /app/Listeners contains handler classes for events
8 /bootstrap contains files required by the bootstrap framework
9 /config contains the application configuration files
10 /database Contains database migrations and seeds. It is also used to store the database for SQLite
11 /public contains the front controllers and assets such as images, CSS, JavaScript etc.
12 /storage contains compiled blade templates, filed based sessions, etc.
13 /tests contains automated unit tests
14 /vendor contains composer dependencies

posted @ 2016-08-22 18:43  qike  阅读(172)  评论(0编辑  收藏  举报