We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c72a89 + 93499a4 commit 8c838a2Copy full SHA for 8c838a2
src/Console/Commands/CrudBackpackCommand.php
@@ -33,12 +33,13 @@ public function handle()
33
$nameKebab = Str::kebab($nameTitle);
34
$namePlural = ucfirst(str_replace('-', ' ', Str::plural($nameKebab)));
35
36
- // Create the CRUD Controller and show output
37
- $this->call('backpack:crud-controller', ['name' => $nameTitle]);
38
39
// Create the CRUD Model and show output
40
$this->call('backpack:crud-model', ['name' => $nameTitle]);
41
+ // Create the CRUD Controller and show output
+ $this->call('backpack:crud-controller', ['name' => $nameTitle]);
42
+
43
// Create the CRUD Request and show output
44
$this->call('backpack:crud-request', ['name' => $nameTitle]);
45
0 commit comments