luffluo / laravel-datitong-generators
This package will generate some files to Datitong
Installs: 215
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/luffluo/laravel-datitong-generators
Requires
- php: ^7.0
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is auto-updated.
Last update: 2025-10-05 21:51:50 UTC
README
This package will generate some files for ChuangKe Company's products.
Installation
Install by composer
$ composer require luffluo/laravel-datitong-generators
Example
Basic
It can generating a controller and templates
$ php artisan admin:make ModuleName/ControllerName
With a Model
It can generating with a model
$ php artisan admin:make ModuleName/ControllerName --model|-m
It can generating with a model for custom model name
$ php artisan admin:make ModuleName/ControllerName -m=ModelName
$ php artisan admin:make ModuleName/ControllerName -m=ParentDir/ModelName
With a Service
It can generating with a service
$ php artisan admin:make ModuleName/ControllerName --service|-s
It can generating with a service for custom service name
$ php artisan admin:make ModuleName/ControllerName -s=ServiceName
$ php artisan admin:make ModuleName/ControllerName -s=ParentDir/ServiceName
With a Request
It can generating with a request
$ php artisan admin:make ModuleName/ControllerName --request|-r
It can generating with a request for custom request name
$ php artisan admin:make ModuleName/ControllerName -r=RequestName
$ php artisan admin:make ModuleName/ControllerName -r=ParentDir/RequestName