File: D:/HostingSpaces/SBogers47/leden.ehbocranendonck.nl/database/seeds/DatabaseSeeder.php
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(RolesTableSeeder::class);
$this->call(UserTableSeeder::class);
$this->call(LanguageTableSeeder::class);
$this->call(CountryTableSeeder::class);
$this->call(CompetencesSeed::class);
if(!Config::get('app.multipleSites')) {
$this->call(BaseSite::class);
$this->call(BasePages::class);
} else {
$this->call(SampleSites::class);
$this->call(SamplePages::class);
}
// $this->call(SampleCompetences::class);
$this->call(SampleUsers::class);
$this->call(SampleCourses::class);
}
}