thebinoculars/code-generator is a Laravel package for code generator for laravel.
It currently has 0 GitHub stars and 0 downloads on Packagist (latest version v1.0).
Install it with composer require thebinoculars/code-generator.
Discover more Laravel packages by thebinoculars
or browse all Laravel packages to compare alternatives.
Last updated
Using this package to generate controller, migration, model, route, request, resource for your Laravel application
composer require thebinoculars/code-generator --dev
php artisan generate:code YOUR_MODEL_NAME --field "FIELD_NAME:FIELD_TYPE"
php artisan generate:code product --field "name:string"
php artisan vendor:publish --tag=code-generator
BaseService by extending TheBinoculars\CodeGenerator\Services\BaseService class or create your ownconfig/generator)
[ZZZ] is equivalent to model form variable ZZZ (available values: PLURAL_UPPER, PLURAL_LOWER, PLURAL_UC, PLURAL_STUDLY, PLURAL_CAMEL, PLURAL_KEBAB, PLURAL_SNAKE, UPPER, LOWER, UC, STUDLY, CAMEL, KEBAB, SNAKE)