2015-03-12 10:44:39 +10:00
|
|
|
<?php
|
|
|
|
|
|
2016-01-20 10:41:57 +02:00
|
|
|
class DatabaseSeeder extends Seeder
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Run the database seeds.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function run()
|
|
|
|
|
{
|
|
|
|
|
$this->command->info('Running DatabaseSeeder');
|
2015-03-12 10:44:39 +10:00
|
|
|
|
2016-01-20 10:41:57 +02:00
|
|
|
Eloquent::unguard();
|
2015-03-12 13:39:52 +10:00
|
|
|
|
2016-01-20 10:41:57 +02:00
|
|
|
$this->call('ConstantsSeeder');
|
|
|
|
|
$this->call('CountriesSeeder');
|
|
|
|
|
$this->call('PaymentLibrariesSeeder');
|
2016-02-04 22:58:34 +02:00
|
|
|
$this->call('FontsSeeder');
|
2016-09-15 13:41:09 +03:00
|
|
|
$this->call('GatewayTypesSeeder');
|
2016-01-20 01:07:31 +02:00
|
|
|
$this->call('BanksSeeder');
|
2016-01-20 10:41:57 +02:00
|
|
|
$this->call('InvoiceStatusSeeder');
|
2016-04-23 16:40:19 -04:00
|
|
|
$this->call('PaymentStatusSeeder');
|
2016-02-27 22:12:22 +02:00
|
|
|
$this->call('CurrenciesSeeder');
|
|
|
|
|
$this->call('DateFormatsSeeder');
|
|
|
|
|
$this->call('InvoiceDesignsSeeder');
|
|
|
|
|
$this->call('PaymentTermsSeeder');
|
2016-04-27 22:13:51 -04:00
|
|
|
$this->call('PaymentTypesSeeder');
|
2016-05-05 11:55:09 +03:00
|
|
|
$this->call('LanguageSeeder');
|
2016-08-21 19:35:06 +03:00
|
|
|
$this->call('IndustrySeeder');
|
2017-02-23 16:33:02 +02:00
|
|
|
$this->call('FrequencySeeder');
|
2016-01-20 10:41:57 +02:00
|
|
|
}
|
|
|
|
|
}
|