Update the factories for City and User models.

This commit is contained in:
2023-06-18 11:25:07 +03:00
parent 07a5ec44cc
commit 0430a2bed1
2 changed files with 2 additions and 15 deletions
+1
View File
@@ -19,6 +19,7 @@ class CityFactory extends Factory
return [
'uuid' => $this->faker->uuid(),
'name' => $this->faker->city(),
'url' => $this->faker->city(),
];
}
}