mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05: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);
 | 
						|
    }
 | 
						|
}
 |