diff --git a/src/Commands/MakeEntityCommand.php b/src/Commands/MakeEntityCommand.php index a5b047a..faf40b6 100644 --- a/src/Commands/MakeEntityCommand.php +++ b/src/Commands/MakeEntityCommand.php @@ -313,7 +313,7 @@ protected function convertToPascalCase(string $entityName): string $pascalEntityName = Str::studly($entityName); if ($entityName !== $pascalEntityName) { - $this->info("{$entityName} was converted to {$pascalEntityName}"); + $this->warn("{$entityName} was converted to {$pascalEntityName}"); } return $pascalEntityName;