mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			888 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			888 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Database\Factories;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Factories\Factory;
 | 
						|
 | 
						|
class DomainsFactory extends Factory
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Define the model's default state.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function definition()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'id' => $this->faker->unique()->bothify('???#??#?'),
 | 
						|
            'domain' => $this->faker->domainWord,
 | 
						|
            'extension' => 'com',
 | 
						|
            'ns1' => null,
 | 
						|
            'ns2' => null,
 | 
						|
            'ns3' => null,
 | 
						|
            'provider_id' => $this->faker->numberBetween(1, 27),
 | 
						|
            'label' => null,
 | 
						|
            'price' => 9.99,
 | 
						|
            'currency' => 'USD',
 | 
						|
            'payment_term' => 4,
 | 
						|
            'owned_since' => $this->faker->dateTimeThisDecade,
 | 
						|
            'next_due_date' => date('Y-m-d',strtotime('+130 days',strtotime(str_replace('/', '-', date("Y-m-d")))))
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |