gmo-ecs / ecs-common-source
Support for extracting common structure when building sources at early stages of the project.
v1.0
2024-11-26 09:19 UTC
Requires
- php: ^8.2
This package is auto-updated.
Last update: 2025-04-26 10:09:12 UTC
README
Installation
Require this package with composer
composer require gmo-ecs/ecs-common-source
Publish packages
php artisan ecs:installation
Repositories
- Artisan command
php artisan make:repository TestRepository
- Specify model for repository
php artisan make:repository TestRepository --model=Test
Services
- Artisan command
php artisan make:service TestService
- Specify repository for service
php artisan make:service TestService --repository=TestRepository
- Specify model for repository when create service
php artisan make:service TestService --repository=TestRepository --model=Test
Controllers custom when exists option --repository
- Specify repository for controller
php artisan make:controller TestController --repository=TestRepository
- Specify model for repository when create controller
php artisan make:controller TestController --repository=TestRepository --model=Test