2016-04-14 10:12:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class UpdateSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
$this->command->info('Running UpdateSeeder...');
|
|
|
|
|
2017-05-14 16:42:24 +02:00
|
|
|
$this->call('CountriesSeeder');
|
2016-04-14 10:12:37 +02:00
|
|
|
$this->call('PaymentLibrariesSeeder');
|
|
|
|
$this->call('FontsSeeder');
|
2016-09-15 12:41:09 +02:00
|
|
|
$this->call('GatewayTypesSeeder');
|
2016-04-14 10:12:37 +02:00
|
|
|
$this->call('BanksSeeder');
|
|
|
|
$this->call('InvoiceStatusSeeder');
|
2016-04-23 22:40:19 +02:00
|
|
|
$this->call('PaymentStatusSeeder');
|
2016-04-14 10:12:37 +02:00
|
|
|
$this->call('CurrenciesSeeder');
|
|
|
|
$this->call('DateFormatsSeeder');
|
|
|
|
$this->call('InvoiceDesignsSeeder');
|
2018-02-12 13:30:27 +01:00
|
|
|
$this->call('ProposalTemplatesSeeder');
|
2016-04-14 10:12:37 +02:00
|
|
|
$this->call('PaymentTermsSeeder');
|
2016-04-28 04:13:51 +02:00
|
|
|
$this->call('PaymentTypesSeeder');
|
2016-05-05 10:55:09 +02:00
|
|
|
$this->call('LanguageSeeder');
|
2016-08-21 18:35:06 +02:00
|
|
|
$this->call('IndustrySeeder');
|
2017-02-23 15:33:02 +01:00
|
|
|
$this->call('FrequencySeeder');
|
2017-05-02 11:09:01 +02:00
|
|
|
$this->call('DbServerSeeder');
|
|
|
|
|
2016-11-09 15:18:35 +01:00
|
|
|
Cache::flush();
|
2016-04-14 10:12:37 +02:00
|
|
|
}
|
|
|
|
}
|