Skip to content

Commit 21c59d7

Browse files
committed
Make factory price more realistic
1 parent 78e2eb8 commit 21c59d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/factories/ProductFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function definition()
3030
'name' => $name,
3131
'slug' => Str::slug($name),
3232
'description' => $this->faker->realText(320),
33-
'price' => $this->faker->numberBetween(10000, 100000),
33+
'price' => $this->faker->numberBetween(100, 1000),
3434
];
3535
}
3636
}

0 commit comments

Comments
 (0)