Skip to content

Commit

Permalink
Merge pull request #117 from egyjs/patch-1
Browse files Browse the repository at this point in the history
Re-Sort Create functions
  • Loading branch information
tabacitu committed Oct 12, 2021
2 parents 0c72a89 + 93499a4 commit 8c838a2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Console/Commands/CrudBackpackCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit 8c838a2

Please sign in to comment.