Created update seeder

This commit is contained in:
Hillel Coren 2016-04-14 11:12:37 +03:00
parent f75b67b704
commit b285b58767

View File

@ -0,0 +1,23 @@
<?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');
$this->call('BanksSeeder');
$this->call('InvoiceStatusSeeder');
$this->call('CurrenciesSeeder');
$this->call('DateFormatsSeeder');
$this->call('InvoiceDesignsSeeder');
$this->call('PaymentTermsSeeder');
}
}