*/ class UserPositionFactory extends Factory { /** * Define the model's default state. * * @return array */ protected $model = UserPosition::class; public function definition(): array { return [ 'value' => fake()->unique()->word(), ]; } }