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/investeren-ouddorp.komma.pro/workbench/komma/kms/src/Seeds/SeedAll.php
<?php

namespace Komma\Kms\Seeds;

use Illuminate\Database\Seeder;

class SeedAll extends Seeder
{
    public function run()
    {

        $this->call('UsersTableSeeder');
        $this->command->info('Kms: Users table seeded!');

        $this->call('CountriesTableSeeder');
        $this->command->info('Kms: Countries table seeded!');

        $this->call('LanguagesTableSeeder');
        $this->command->info('Kms: Languages table seeded!');

        $this->call('PagesTableSeeder');
        $this->command->info('Kms: Page table seeded!');

        $this->call('RoutesTableSeeder');
        $this->command->info('Kms: Routes table seeded!');

        /* Enable this when Projects are active, or call
            php artisan db:seed --class=Komma\\Kms\\Seeds\\ProjectPageTableSeeder
        */
//        $this->call('ProjectPageTableSeeder');
//        $this->command->info('Kms: Project page seeded!');

        /* Enable this when Blog is active, or call
    php artisan db:seed --class=Komma\\Kms\\Seeds\\BlogPageTableSeeder
*/
//        $this->call('BlogPageTableSeeder');
//        $this->command->info('Kms: Blog page seeded!');

        /* Enable this when News is active, or call
    php artisan db:seed --class=Komma\\Kms\\Seeds\\NewsPageTableSeeder
*/
//        $this->call('NewsPageTableSeeder');
//        $this->command->info('Kms: News page seeded!');

        /*
        * Enable this when News is active, or call
        * php artisan db:seed --class=Komma\\Kms\\Seeds\\ContactPageTableSeeder
        */
    }
}