This commit is contained in:
2025-06-07 14:01:21 +02:00
parent 67da9545d3
commit 6cac04fe68
4 changed files with 13 additions and 4 deletions

View File

@@ -17,7 +17,12 @@ class MangasFactory extends Factory
public function definition(): array
{
return [
//
"prix" => fake()->randomFloat(),
"titre" => fake()->text(20),
"couverture" => fake()->text(20),
"genre_id" => fake()->numberBetween(1, 5),
"created_at" => now(),
"updated_at" => now()
];
}
}