mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 15:49:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			455 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 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
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |