From 242f9bceaf972371df9a1c729003dbc7e6f98fa0 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Sun, 23 Jun 2024 22:01:38 +0300 Subject: [PATCH] The console command for creating models has been renamed to `make:model-translation` --- src/Console/ModelMakeCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/ModelMakeCommand.php b/src/Console/ModelMakeCommand.php index b9b9eb3..62de942 100644 --- a/src/Console/ModelMakeCommand.php +++ b/src/Console/ModelMakeCommand.php @@ -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';