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/egovers/edwingovers.nl/app/KommaApp/Shop/seeds/DatabaseSeeder.php
<?php
namespace App\KommaApp\Shop\Seeds;

use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        $this->call(CategoriesInitializer::class);
        $this->call(UserTableSeeder::class);
        $this->call(GroupBehaviour::class);
        $this->call(SampleProducts::class);
        $this->call(SampleCategories::class);
        $this->call(SampleOrders::class);
        $this->call(SampleProperties::class);
    }
}