2013-11-26 13:45:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class DatabaseSeeder extends Seeder {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
2013-11-28 13:15:34 +01:00
|
|
|
$this->command->info('Running DatabaseSeeder');
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
Eloquent::unguard();
|
|
|
|
|
|
|
|
$this->call('UserTableSeeder');
|
|
|
|
$this->call('ConstantsSeeder');
|
2013-11-28 22:10:01 +01:00
|
|
|
|
|
|
|
$this->call('CountriesSeeder');
|
|
|
|
$this->command->info('Seeded the countries!');
|
2014-03-21 13:15:53 +01:00
|
|
|
|
|
|
|
$this->call('PaymentLibrariesSeeder');
|
|
|
|
$this->command->info('Seeded the Payment Libraries!');
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|