diff --git a/src/Console/Commands/CrudBackpackCommand.php b/src/Console/Commands/CrudBackpackCommand.php index a27ed53..04ed21e 100644 --- a/src/Console/Commands/CrudBackpackCommand.php +++ b/src/Console/Commands/CrudBackpackCommand.php @@ -33,12 +33,13 @@ public function handle() $nameKebab = Str::kebab($nameTitle); $namePlural = ucfirst(str_replace('-', ' ', Str::plural($nameKebab))); - // Create the CRUD Controller and show output - $this->call('backpack:crud-controller', ['name' => $nameTitle]); // Create the CRUD Model and show output $this->call('backpack:crud-model', ['name' => $nameTitle]); + // Create the CRUD Controller and show output + $this->call('backpack:crud-controller', ['name' => $nameTitle]); + // Create the CRUD Request and show output $this->call('backpack:crud-request', ['name' => $nameTitle]);