Laravel Folder Structure

Опубликовано: 14 Май 2026
на канале: Learn Software
37
1

app → Core application logic (Models, Controllers, Middleware)
bootstrap → App bootstrapping files (app initialization)
config → Configuration files for database, mail, app settings
database → Migrations, seeders, and factories
public → Entry point (index.php) and publicly accessible files
resources → Views (Blade), CSS, JavaScript, language files
routes → Route definitions (web.php, api.php)
storage → Logs, cache, and uploaded files
tests → Unit and feature test cases
vendor → Composer dependencies (third-party packages)