*/ class EggCollectionFactory extends Factory { protected $model = EggCollection::class; public function definition(): array { $dateTime = $this->faker->dateTimeBetween('-1 month', 'now'); return [ 'production_date' => $dateTime, 'warehouse_id' => Warehouse::first()?->id ?? Warehouse::factory(), 'notes' => $this->faker->optional(0.4)->sentence(), ]; } }