Skip to content

Commit

Permalink
Merge pull request #26 from Laravel-Lang/1.x
Browse files Browse the repository at this point in the history
The console command for creating models has been renamed to `make:model-translation`
  • Loading branch information
andrey-helldar authored Jun 23, 2024
2 parents 6ca3531 + 242f9bc commit c36d879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/ModelMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
use function Laravel\Prompts\info;
use function Laravel\Prompts\text;

#[AsCommand(name: 'make:model:localization')]
#[AsCommand(name: 'make:model-translation')]
class ModelMakeCommand extends Command
{
protected $signature = 'make:model:localization {model?} {--columns=*}';
protected $signature = 'make:model-translation {model?} {--columns=*}';

protected $description = 'Creates a model for storing translations';

Expand Down

0 comments on commit c36d879

Please sign in to comment.