Created
December 14, 2021 10:42
-
-
Save dominiquevienne/1cefbf0db03d109fa0c52e39d08dc8b3 to your computer and use it in GitHub Desktop.
Laravel 8 directories and files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app | |
-- Console | |
----- Kernel.php | |
-- Exceptions | |
----- Handler.php | |
-- Http | |
----- Controllers | |
-------- Controller.php | |
----- Middlewars | |
----- Kernel.php | |
-- Models | |
----- User.php | |
-- Providers | |
----- AppServiceProvider.php | |
----- AuthServiceProvider.php | |
----- BroadcastServiceProvider.php | |
----- EventServiceProvider.php | |
----- RouteServiceProvider.php | |
bootstrap | |
-- cache | |
----- .gitignore | |
----- packages.php | |
----- services.php | |
-- app.php | |
config | |
-- app.php | |
-- auth.php | |
-- broadcasting.php | |
-- cache.php | |
-- cors.php | |
-- database.php | |
-- filesystems.php | |
-- hashing.php | |
-- logging.php | |
-- mail.php | |
-- queue.php | |
-- sanctum.php | |
-- services.php | |
-- session.php | |
-- view.php | |
database | |
-- factories | |
----- UserFactory.php | |
-- migrations | |
----- 2014_10_12_000000_create_users_table.php | |
----- 2014_10_12_100000_create_password_resets_table.php | |
----- 2019_08_19_000000_create_failed_jobs_table.php | |
----- 2019_12_14_000001_create_personal_access_tokens_table.php | |
-- seeders | |
----- DatabaseSeeder.php | |
----- .gititgnore | |
-- .gititgnore | |
public | |
-- .htaccess | |
-- favicon.ico | |
-- index.php | |
-- robots.txt | |
-- web.config | |
resources | |
-- css | |
----- app.css | |
-- js | |
----- app.js | |
----- bootstrap.js | |
-- lang | |
----- en | |
-------- auth.php | |
-------- pagination.php | |
-------- passwords.php | |
-------- validation.php | |
-- views | |
----- welcome.blade.php | |
routes | |
-- api.php | |
-- channel.php | |
-- console.php | |
-- web.php | |
storage | |
-- app | |
----- public | |
-------- .gitignore | |
----- .gitignore | |
-- framework | |
----- cache | |
-------- data | |
----------- .gitignore | |
-------- .gitignore | |
----- sessions | |
-------- .gitignore | |
----- testing | |
-------- .gitignore | |
----- views | |
-------- .gitignore | |
----- .gitignore | |
-- logs | |
----- .gitignore | |
tests | |
-- Feature | |
----- ExampleTest.php | |
-- Unit | |
----- ExampleTest.php | |
-- CreatesApplication.php | |
-- TestCase.php | |
vendor | |
-- ... | |
.editorconfig | |
.env | |
.env.example | |
.gitattributes | |
.gitignore | |
.styleci.yml | |
artisan.php | |
composer.json | |
composer.lock | |
package.json | |
phpunit.xml | |
README.md | |
server.php | |
webpack.mix.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment