mirror of https://github.com/kcal-app/kcal.git
				
				
				
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Seeders;
 | |
| 
 | |
| use Illuminate\Database\Seeder;
 | |
| 
 | |
| class DatabaseSeeder extends Seeder
 | |
| {
 | |
|     /**
 | |
|      * Seed the application's database.
 | |
|      */
 | |
|     public function run(): void
 | |
|     {
 | |
|         $this->call(UserSeeder::class);
 | |
|         $this->call(FoodSeeder::class);
 | |
|         $this->call(RecipeSeeder::class);
 | |
|         $this->call(JournalEntrySeeder::class);
 | |
|     }
 | |
| }
 |