diff --git a/src/CrudApiMake.php b/src/CrudApiMake.php index ef58924..ddf0f23 100644 --- a/src/CrudApiMake.php +++ b/src/CrudApiMake.php @@ -9,7 +9,10 @@ class CrudApiMake extends GeneratorCommand * * @var string */ - protected $signature = 'make:crud-api {name} {--p|parent=} {--t|tests-only} {--f|formfield}'; + protected $signature = 'make:crud-api {name : The model name} + {--p|parent= : The generated API controller parent directory} + {--t|tests-only : Generate API CRUD testcases only} + {--f|formfield : Generate CRUD with FormField facades}'; /** * The console command description. diff --git a/src/CrudMake.php b/src/CrudMake.php index 46f9fa1..a797242 100644 --- a/src/CrudMake.php +++ b/src/CrudMake.php @@ -9,7 +9,11 @@ class CrudMake extends GeneratorCommand * * @var string */ - protected $signature = 'make:crud {name} {--p|parent=} {--t|tests-only} {--f|formfield} {--bs3}'; + protected $signature = 'make:crud {name : The model name} + {--p|parent= : The generated controller parent directory} + {--t|tests-only : Generate CRUD testcases only} + {--f|formfield : Generate CRUD with FormField facades} + {--bs3 : Generate CRUD with Bootstrap 3 views}'; /** * The console command description. diff --git a/src/CrudSimpleMake.php b/src/CrudSimpleMake.php index 05e59f8..1b0d1f8 100644 --- a/src/CrudSimpleMake.php +++ b/src/CrudSimpleMake.php @@ -9,7 +9,11 @@ class CrudSimpleMake extends GeneratorCommand * * @var string */ - protected $signature = 'make:crud-simple {name} {--p|parent=} {--t|tests-only} {--f|formfield} {--bs3}'; + protected $signature = 'make:crud-simple {name : The model name} + {--p|parent= : The generated controller parent directory} + {--t|tests-only : Generate CRUD testcases only} + {--f|formfield : Generate CRUD with FormField facades} + {--bs3 : Generate CRUD with Bootstrap 3 views}'; /** * The console command description.