Laravel Application Folder Structure After you have successfully installed Laravel, you need to know about the application structure (folder structure) of Laravel. The root directory of Laravel contains the following directories. Sub-directories of app directory is also listed below. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 DIRECTORY DESCRIPTION / app contains core code of your application / app / Console contains all of your Artisan commands / app / Events contains event classes / app / Exceptions contains exception handling classes / app / Http contains controllers , middleware , and requests / app / Jobs ...