2016-04-14 11:12:37 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class UpdateSeeder extends Seeder
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Run the database seeds.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function run()
|
|
|
|
|
{
|
|
|
|
|
$this->command->info('Running UpdateSeeder...');
|
|
|
|
|
|
|
|
|
|
$this->call('PaymentLibrariesSeeder');
|
|
|
|
|
$this->call('FontsSeeder');
|
2016-09-15 13:41:09 +03:00
|
|
|
$this->call('GatewayTypesSeeder');
|
2016-04-14 11:12:37 +03:00
|
|
|
$this->call('BanksSeeder');
|
|
|
|
|
$this->call('InvoiceStatusSeeder');
|
2016-04-23 16:40:19 -04:00
|
|
|
$this->call('PaymentStatusSeeder');
|
2016-04-14 11:12:37 +03: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');
|
2016-11-09 16:18:35 +02:00
|
|
|
|
|
|
|
|
Cache::flush();
|
2016-04-14 11:12:37 +03:00
|
|
|
}
|
|
|
|
|
}
|