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/finsteps.komma.pro/database/seeds/DatabaseSeederDemo.php
<?php

use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Config;

/**
 * This seeder is especially for sales people.
 * For development, please use the regular DatabaseSeeder.
 * Refer to the readme for more information.
 *
 * Class DatabaseSeeder
 *
 * @see DatabaseSeeder
 */
class DatabaseSeederDemo extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        //Prerequisist seeders
        $this->call(ButtonSeeder::class);

        //Main seeders
        $this->call(DefaultSiteDemoPageSeeder::class);
        $this->call(DefaultSiteDevelopmentPageComponentSeeder::class);
        $this->call(ServiceSeeder::class);
        $this->call(ProjectSeeder::class);
        $this->call(NewsPostSeeder::class);
        $this->call(ReferencesSeeder::class);
        $this->call(ServicepointSeeder::class);
        $this->call(WebsiteConfigSeeder::class);
        //Relation seeders
//        $this->call(ButtonRelationSeeder::class);
        $this->call(DiscoverMorePageRelationSeeder::class);
        $this->call(CorrectRoutesForWildcardModelsSeeder::class);
    }
}