mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 13:41:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			575 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			575 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| use Illuminate\Database\Seeder;
 | |
| 
 | |
| class DatabaseSeeder extends Seeder
 | |
| {
 | |
|     /**
 | |
|      * Run the database seeds.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function run()
 | |
|     {
 | |
|         $this->call(UsersTableSeeder::class);
 | |
|         $this->call(CurrenciesTableSeeder::class);
 | |
|         $this->call(RoleSeeder::class);
 | |
|         $this->call(CountriesTableSeeder::class);
 | |
|         $this->call(StatesTableSeeder::class);
 | |
|         $this->call(CitiesTableSeeder::class);
 | |
|         $this->call(EstimateTemplateSeeder::class);
 | |
|         $this->call(InvoiceTemplateSeeder::class);
 | |
|     }
 | |
| }
 |