HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/carrot.komma.pro/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);
    }
}