![]()
WARNING You're browsing the documentation for an upcoming version of Laravel. The documentation and features of this release are subject to change.
Directory Structure
Introduction
The default Laravel application structure is intended to provide a great starting point for both large and small applications. But you are free to organize your application however you like. Laravel imposes almost no restrictions on where any given class is located - as long as Composer can autoload the class.
The Root Directory
The App Directory
The
app
directory contains the core code of your application. We'll explore this directory in more detail soon; however, almost all of the classes in your application will be in this directory.The Bootstrap Directory
The
bootstrap
directory contains theapp.php
file which bootstraps the framework. This directory also houses acache
directory which contains framework generated files for performance optimization such as the route and services cache files. You should not typically need to modify any files within this directory.The Config Directory
The
config
directory, as the name implies, contains all of your application's configuration files. It's a great idea to read through all of these files and familiarize yourself with all of the options available to you.The Database Directory
The
database
directory contains your database migrations, model factories, and seeds. If you wish, you may also use this directory to hold an SQLite database.The Public Directory
The
public
directory contains theindex.php
file, which is the entry point for all requests entering your application and configures autoloading. This directory also houses your assets such as images, JavaScript, and CSS.The Resources Directory
The
resources
directory contains your views as well as your raw, un-compiled assets such as CSS or JavaScript. This directory also houses all of your language files.The Routes Directory
The
routes
directory contains all of the route definitions for your application. By default, several route files are included with Laravel:web.php
,api.php
,console.php
, andchannels.php
.The
web.php
file contains routes that theRouteServiceProvider
places in theweb
middleware group, which provides session state, CSRF protection, and cookie encryption. If your application does not offer a stateless, RESTful API then it is likely that all of your routes will most likely be defined in theweb.php
file.The
api.php
file contains routes that theRouteServiceProvider
places in theapi
middleware group. These routes are intended to be stateless, so requests entering the application through these routes are intended to be authenticated via tokens and will not have access to session state.The
console.php
file is where you may define all of your closure based console commands. Each closure is bound to a command instance allowing a simple approach to interacting with each command's IO methods. Even though this file does not define HTTP routes, it defines console based entry points (routes) into your application.The
channels.php
file is where you may register all of the event broadcasting channels that your application supports.The Storage Directory
The
storage
directory contains your logs, compiled Blade templates, file based sessions, file caches, and other files generated by the framework. This directory is segregated intoapp
,framework
, andlogs
directories. Theapp
directory may be used to store any files generated by your application. Theframework
directory is used to store framework generated files and caches. Finally, thelogs
directory contains your application's log files.The
storage/app/public
directory may be used to store user-generated files, such as profile avatars, that should be publicly accessible. You should create a symbolic link atpublic/storage
which points to this directory. You may create the link using thephp artisan storage:link
Artisan command.The Tests Directory
The
tests
directory contains your automated tests. Example PHPUnit unit tests and feature tests are provided out of the box. Each test class should be suffixed with the wordTest
. You may run your tests using thephpunit
orphp vendor/bin/phpunit
commands. Or, if you would like a more detailed and beautiful representation of your test results, you may run your tests using thephp artisan test
Artisan command.The Vendor Directory
The
vendor
directory contains your Composer dependencies.The App Directory
The majority of your application is housed in the
app
directory. By default, this directory is namespaced underApp
and is autoloaded by Composer using the PSR-4 autoloading standard.The
app
directory contains a variety of additional directories such asConsole
,Http
, andProviders
. Think of theConsole
andHttp
directories as providing an API into the core of your application. The HTTP protocol and CLI are both mechanisms to interact with your application, but do not actually contain application logic. In other words, they are two ways of issuing commands to your application. TheConsole
directory contains all of your Artisan commands, while theHttp
directory contains your controllers, middleware, and requests.A variety of other directories will be generated inside the
app
directory as you use themake
Artisan commands to generate classes. So, for example, theapp/Jobs
directory will not exist until you execute themake:job
Artisan command to generate a job class.{tip} Many of the classes in the
app
directory can be generated by Artisan via commands. To review the available commands, run thephp artisan list make
command in your terminal.The Broadcasting Directory
The
Broadcasting
directory contains all of the broadcast channel classes for your application. These classes are generated using themake:channel
command. This directory does not exist by default, but will be created for you when you create your first channel. To learn more about channels, check out the documentation on event broadcasting.The Console Directory
The
Console
directory contains all of the custom Artisan commands for your application. These commands may be generated using themake:command
command. This directory also houses your console kernel, which is where your custom Artisan commands are registered and your scheduled tasks are defined.The Events Directory
This directory does not exist by default, but will be created for you by the
event:generate
andmake:event
Artisan commands. TheEvents
directory houses event classes. Events may be used to alert other parts of your application that a given action has occurred, providing a great deal of flexibility and decoupling.The Exceptions Directory
The
Exceptions
directory contains your application's exception handler and is also a good place to place any exceptions thrown by your application. If you would like to customize how your exceptions are logged or rendered, you should modify theHandler
class in this directory.The Http Directory
The
Http
directory contains your controllers, middleware, and form requests. Almost all of the logic to handle requests entering your application will be placed in this directory.The Jobs Directory
This directory does not exist by default, but will be created for you if you execute the
make:job
Artisan command. TheJobs
directory houses the queueable jobs for your application. Jobs may be queued by your application or run synchronously within the current request lifecycle. Jobs that run synchronously during the current request are sometimes referred to as "commands" since they are an implementation of the command pattern.The Listeners Directory
This directory does not exist by default, but will be created for you if you execute the
event:generate
ormake:listener
Artisan commands. TheListeners
directory contains the classes that handle your events. Event listeners receive an event instance and perform logic in response to the event being fired. For example, aUserRegistered
event might be handled by aSendWelcomeEmail
listener.The Mail Directory
This directory does not exist by default, but will be created for you if you execute the
make:mail
Artisan command. TheMail::send
method.The Models Directory
The
Models
directory contains all of your Eloquent model classes. The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database. Each database table has a corresponding "Model" which is used to interact with that table. Models allow you to query for data in your tables, as well as insert new records into the table.The Notifications Directory
This directory does not exist by default, but will be created for you if you execute the
make:notification
Artisan command. TheNotifications
directory contains all of the "transactional" notifications that are sent by your application, such as simple notifications about events that happen within your application. Laravel's notification features abstracts sending notifications over a variety of drivers such as email, Slack, SMS, or stored in a database.The Policies Directory
This directory does not exist by default, but will be created for you if you execute the
make:policy
Artisan command. ThePolicies
directory contains the authorization policy classes for your application. Policies are used to determine if a user can perform a given action against a resource.The Providers Directory
The
Providers
directory contains all of the service providers for your application. Service providers bootstrap your application by binding services in the service container, registering events, or performing any other tasks to prepare your application for incoming requests.In a fresh Laravel application, this directory will already contain several providers. You are free to add your own providers to this directory as needed.
The Rules Directory
This directory does not exist by default, but will be created for you if you execute the
make:rule
Artisan command. TheRules
directory contains the custom validation rule objects for your application. Rules are used to encapsulate complicated validation logic in a simple object. For more information, check out the validation documentation.