faker->unique()->words(2, true); return [ 'name' => Str::title($name), 'slug' => Str::slug($name.'-'.$this->faker->unique()->randomNumber()), 'sku' => strtoupper($this->faker->unique()->bothify('PRD-#####')), 'cost_price' => $this->faker->numberBetween(20000, 150000), 'sale_price' => $this->faker->numberBetween(30000, 200000), 'point_per_pcs' => $this->faker->numberBetween(1, 50), 'description' => $this->faker->optional()->paragraph(), ]; } }