mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 22:39:08 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
	
		
			455 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
	
		
			455 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|  | <?php | ||
|  | 
 | ||
|  | namespace Database\Factories; | ||
|  | 
 | ||
|  | use Illuminate\Database\Eloquent\Factories\Factory; | ||
|  | 
 | ||
|  | class DNSFactory extends Factory | ||
|  | { | ||
|  |     public function definition() | ||
|  |     { | ||
|  |         return [ | ||
|  |             'id' => $this->faker->unique()->bothify('???#??#?'), | ||
|  |             'dns_type' => $this->faker->shuffleArray(['A', 'AAA']), | ||
|  |             'value1' => $this->faker->shuffleArray(['dev', 'blog', 'panel']), | ||
|  |             'value2' => $this->faker->ipv4 | ||
|  |         ]; | ||
|  |     } | ||
|  | } |