File: D:/HostingSpaces/SBogers10/jacques-hein.komma.pro/app/database/seeds/DatabaseSeeder.php
<?php
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Eloquent::unguard();
// $this->call('UserTableSeeder');
$this->call('UsersTableSeeder');
$this->command->info('Kms: Users table seeded!');
$this->call('CountriesTableSeeder');
$this->command->info('Kms: Countries table seeded!');
$this->call('LanguagesTableSeeder');
$this->command->info('Kms: Languages table seeded!');
$this->call('PagesTableSeeder');
$this->command->info('Kms: Page table seeded!');
$this->call('ProjectPageTableSeeder');
$this->command->info('Kms: Project page seeded!');
$this->call('NewsPageTableSeeder');
$this->command->info('Kms: News page seeded!');
$this->call('ReferencePageTableSeeder');
$this->command->info('Kms: Reference page seeded!');
}
}