diff --git a/src/Console/Commands/CrudBackpackCommand.php b/src/Console/Commands/CrudBackpackCommand.php index 0bd5694..5ad6fa2 100644 --- a/src/Console/Commands/CrudBackpackCommand.php +++ b/src/Console/Commands/CrudBackpackCommand.php @@ -12,7 +12,7 @@ class CrudBackpackCommand extends Command * * @var string */ - protected $signature = 'backpack:crud {name}'; + protected $signature = 'backpack:make:crud {name}'; /** * The console command description. diff --git a/src/Console/Commands/CrudControllerBackpackCommand.php b/src/Console/Commands/CrudControllerBackpackCommand.php index c40c270..96efef7 100644 --- a/src/Console/Commands/CrudControllerBackpackCommand.php +++ b/src/Console/Commands/CrudControllerBackpackCommand.php @@ -11,14 +11,14 @@ class CrudControllerBackpackCommand extends GeneratorCommand * * @var string */ - protected $name = 'backpack:crud-controller'; + protected $name = 'backpack:make:controller'; /** * The name and signature of the console command. * * @var string */ - protected $signature = 'backpack:crud-controller {name}'; + protected $signature = 'backpack:make:controller {name}'; /** * The console command description. diff --git a/src/Console/Commands/CrudModelBackpackCommand.php b/src/Console/Commands/CrudModelBackpackCommand.php index f5bceeb..640a427 100644 --- a/src/Console/Commands/CrudModelBackpackCommand.php +++ b/src/Console/Commands/CrudModelBackpackCommand.php @@ -12,14 +12,14 @@ class CrudModelBackpackCommand extends GeneratorCommand * * @var string */ - protected $name = 'backpack:crud-model'; + protected $name = 'backpack:make:model'; /** * The name and signature of the console command. * * @var string */ - protected $signature = 'backpack:crud-model {name}'; + protected $signature = 'backpack:make:crud-model {name}'; /** * The console command description. diff --git a/src/Console/Commands/CrudRequestBackpackCommand.php b/src/Console/Commands/CrudRequestBackpackCommand.php index 4f345e6..3c9cb4d 100644 --- a/src/Console/Commands/CrudRequestBackpackCommand.php +++ b/src/Console/Commands/CrudRequestBackpackCommand.php @@ -11,14 +11,14 @@ class CrudRequestBackpackCommand extends GeneratorCommand * * @var string */ - protected $name = 'backpack:crud-request'; + protected $name = 'backpack:make:request'; /** * The name and signature of the console command. * * @var string */ - protected $signature = 'backpack:crud-request {name}'; + protected $signature = 'backpack:make:crud-request {name}'; /** * The console command description. diff --git a/src/Console/Commands/ModelBackpackCommand.php b/src/Console/Commands/ModelBackpackCommand.php index d9679c0..6b27568 100644 --- a/src/Console/Commands/ModelBackpackCommand.php +++ b/src/Console/Commands/ModelBackpackCommand.php @@ -12,14 +12,14 @@ class ModelBackpackCommand extends GeneratorCommand * * @var string */ - protected $name = 'backpack:model'; + protected $name = 'backpack:make:model'; /** * The name and signature of the console command. * * @var string */ - protected $signature = 'backpack:model {name} {--softdelete}'; + protected $signature = 'backpack:make:model {name} {--softdelete}'; /** * The console command description. diff --git a/src/Console/Commands/RequestBackpackCommand.php b/src/Console/Commands/RequestBackpackCommand.php index 0658956..3aeb5b6 100644 --- a/src/Console/Commands/RequestBackpackCommand.php +++ b/src/Console/Commands/RequestBackpackCommand.php @@ -11,14 +11,14 @@ class RequestBackpackCommand extends GeneratorCommand * * @var string */ - protected $name = 'backpack:request'; + protected $name = 'backpack:make:request'; /** * The name and signature of the console command. * * @var string */ - protected $signature = 'backpack:request {name}'; + protected $signature = 'backpack:make:request {name}'; /** * The console command description. diff --git a/src/Console/Commands/ViewBackpackCommand.php b/src/Console/Commands/ViewBackpackCommand.php index d9e8efb..9162e1f 100644 --- a/src/Console/Commands/ViewBackpackCommand.php +++ b/src/Console/Commands/ViewBackpackCommand.php @@ -11,14 +11,14 @@ class ViewBackpackCommand extends GeneratorCommand * * @var string */ - protected $name = 'backpack:view'; + protected $name = 'backpack:make:view'; /** * The name and signature of the console command. * * @var string */ - protected $signature = 'backpack:view {name} {--plain}'; + protected $signature = 'backpack:make:view {name} {--plain}'; /** * The console command description.