Skip to content

Commit 8c838a2

Browse files
authored
Merge pull request #117 from egyjs/patch-1
Re-Sort Create functions
2 parents 0c72a89 + 93499a4 commit 8c838a2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Console/Commands/CrudBackpackCommand.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ public function handle()
3333
$nameKebab = Str::kebab($nameTitle);
3434
$namePlural = ucfirst(str_replace('-', ' ', Str::plural($nameKebab)));
3535

36-
// Create the CRUD Controller and show output
37-
$this->call('backpack:crud-controller', ['name' => $nameTitle]);
3836

3937
// Create the CRUD Model and show output
4038
$this->call('backpack:crud-model', ['name' => $nameTitle]);
4139

40+
// Create the CRUD Controller and show output
41+
$this->call('backpack:crud-controller', ['name' => $nameTitle]);
42+
4243
// Create the CRUD Request and show output
4344
$this->call('backpack:crud-request', ['name' => $nameTitle]);
4445

0 commit comments

Comments
 (0)