Generator Commands
The Generator has various commands to generate files in a group or individually. Sometimes you need to generate/re-generate individual files after making some manual changes to some files and you don't want the generator to override your changes.
Also, it has command to rollback all generated files.
Rollback Command
To generate API, we have the following command,
php artisan infyom:rollback $MODEL_NAME $COMMAND_TYPE
Where,
$MODEL_NAME
- Its a model name for which you want to delete files
$COMMAND_TYPE
- Command type from api
, scaffold
or api_scaffold
Migration Generator Command
php artisan infyom:model $MODEL_NAME
Repository Generator Command
php artisan infyom:repository $MODEL_NAME
API Controller Generator Command
php artisan infyom.api:controller $MODEL_NAME
API Requests Generator Command
php artisan infyom.api:requests $MODEL_NAME
Tests Generator Command
php artisan infyom.api:tests $MODEL_NAME
Scaffold Controller Generator Command
php artisan infyom.scaffold:controller $MODEL_NAME
Scaffold Requests Generator Command
php artisan infyom.scaffold:requests $MODEL_NAME
Views Generator Command
php artisan infyom.scaffold:views $MODEL_NAME