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/shop.komma.nl/database/seeds/CompleteDatabaseSeeder.php
<?php

use App\seeds\CommonGroupBehaviours;
use App\Seeds\CommonShopPages;
use App\seeds\SampleCategories;
use App\seeds\CommonCoupons;
use App\seeds\SampleOrders;
use App\seeds\SampleProducts;
use App\seeds\CommonProperties;
use App\seeds\SampleShippingCosts;
use App\seeds\UserTableSeeder;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Config;

class CompleteDatabaseSeeder extends Seeder
{
    /**
     * Run the database seeds needed for showcasing all options and human testing.
     *
     * @return void
     */
    public function run()
    {
        $this->call(UserTableSeeder::class);
        $this->call(CountryTableSeeder::class);

        if(!Config::get('app.multipleSites')) {
            $this->call(CommonPagesSingleSite::class);
        } else {
            $this->call(SamplePagesMultipleSites::class);
        }
        $this->call(SampleShippingCosts::class);

        $this->call(CommonGroupBehaviours::class);
        $this->call(SampleProducts::class);
        $this->call(CommonShopPages::class);
        $this->call(CommonCoupons::class);
        $this->call(SampleCategories::class);
        $this->call(SampleOrders::class);
        $this->call(CommonProperties::class);

        $this->call(CommonCorrectRoutesForWildcardModelsSeeder::class);
    }
}