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/jacques-hein.komma.pro/app/database/seeds/DatabaseSeeder.php
<?php

class DatabaseSeeder extends Seeder {

	/**
	 * Run the database seeds.
	 *
	 * @return void
	 */
	public function run()
	{
		Eloquent::unguard();

		// $this->call('UserTableSeeder');


        $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('ProjectPageTableSeeder');
        $this->command->info('Kms: Project page seeded!');

        $this->call('NewsPageTableSeeder');
        $this->command->info('Kms: News page seeded!');

        $this->call('ReferencePageTableSeeder');
        $this->command->info('Kms: Reference page seeded!');

	}

}