File: D:/HostingSpaces/carrotps/carrotps.com/database/seeds/DatabaseSeeder.php
<?php
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Config;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
//Prerequisist seeders
$this->call(LanguagesSeeder::class);
$this->call(DefaultSiteSeeder::class);
$this->call(ButtonSeeder::class);
//Main seeders
$this->call(DefaultSitePageSeeder::class);
$this->call(DefaultSitePageComponentSeeder::class);
$this->call(ServiceSeeder::class);
$this->call(ProjectSeeder::class);
$this->call(NewsPostSeeder::class);
$this->call(ReferencesSeeder::class);
$this->call(WebsiteConfigSeeder::class);
// $this->call(ContactServicepointSeeder::class);
//Relation seeders
// $this->call(ButtonRelationSeeder::class);
$this->call(DiscoverMorePageRelationSeeder::class);
$this->call(CorrectRoutesForWildcardModelsSeeder::class);
if(Config::get('app.multipleSites')) {
$this->call(SecondSiteSeeder::class);
$this->call(SecondSitePageSeeder::class);
}
$this->call(KmsUserTableSeeder::class);
}
}