mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 06:19:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Seeders;
 | |
| 
 | |
| use Illuminate\Database\Seeder;
 | |
| 
 | |
| class DatabaseSeeder extends Seeder
 | |
| {
 | |
|     public function run()
 | |
|     {
 | |
|         //\App\Models\User::factory(1)->create();//Disable demo first user creation
 | |
|         $this->call(SettingsSeeder::class);
 | |
|         $this->call(ProvidersSeeder::class);
 | |
|         $this->call(LocationsSeeder::class);
 | |
|         $this->call(OsSeeder::class);
 | |
|         $this->call(LabelsSeeder::class);
 | |
|        //$this->call(DomainsSeeder::class);
 | |
|         //$this->call(ServersSeeder::class);
 | |
|         //$this->call(SharedSeeder::class);
 | |
|     }
 | |
| }
 |