*/ class ProductPackagingFactory extends Factory { protected $model = ProductPackaging::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'product_id' => Product::factory(), 'name' => $this->faker->word(), 'qty_base' => $this->faker->randomFloat(3, 1, 100), ]; } }