invoiceninja/database/seeds/DatabaseSeeder.php

26 lines
483 B
PHP
Raw Normal View History

2015-03-12 10:44:39 +10:00
<?php
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->command->info('Running DatabaseSeeder');
Eloquent::unguard();
$this->call('ConstantsSeeder');
2015-08-20 18:09:04 +03:00
$this->command->info('Seeded the constants');
$this->call('CountriesSeeder');
2015-08-20 18:09:04 +03:00
$this->command->info('Seeded the countries');
2015-03-12 10:44:39 +10:00
$this->call('PaymentLibrariesSeeder');
2015-08-20 18:09:04 +03:00
$this->command->info('Seeded the Payment Libraries');
2015-03-12 10:44:39 +10:00
}
}