mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-10-28 08:51:06 -03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			279 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			279 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Seeders;
 | |
| 
 | |
| use Illuminate\Database\Seeder;
 | |
| 
 | |
| class DatabaseSeeder extends Seeder
 | |
| {
 | |
|     /**
 | |
|      * Seed the application's database.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function run()
 | |
|     {
 | |
|         // $this->call(UsersTableSeeder::class);
 | |
|     }
 | |
| }
 |