Создание модуля
php artisan module:make <module-name>php artisan module:make Blog User Authphp artisan module:make Blog --plain
# или
php artisan module:make Blog -pСоглашение об именовании
Структура папок
app/
bootstrap/
vendor/
Modules/
├── Blog/
├── Assets/
├── Config/
├── Console/
├── Database/
├── Migrations/
├── Seeders/
├── Entities/
├── Http/
├── Controllers/
├── Middleware/
├── Requests/
├── routes.php
├── Providers/
├── BlogServiceProvider.php
├── Resources/
├── lang/
├── views/
├── Repositories/
├── Tests/
├── composer.json
├── module.json
├── start.phpLast updated