faker->unique()->words(3, true); return [ 'uuid' => $this->faker->uuid, 'name' => $name, 'slug' => Str::slug($name), 'code' => $this->faker->numerify('##.##.##'), 'lvl_edu' => $this->faker->randomElement([ LevelEducational::BACHELOR->value, LevelEducational::MASTER->value, LevelEducational::SPECIALIST->value, ]), 'info' => ['description' => $this->faker->paragraph], ]; } }