Subversion-Projekte lars-tiefland.webanos.marine-sales.de

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

namespace Database\Seeders;

// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Seed the application's database.
     *
     * @return void
     */
    public function run(): void
    {
        //$this->call(ShopSeeder::class);
        //$this->call(DirectorySeeder::class);
        //$this->call(ItemSeeder::class);
        //$this->call(PriceSeeder::class);
        //$this->call(ActionSeeder::class);
        //$this->call(UserSeeder::class);
        //$this->call(AddressSeeder::class);
        //$this->call(OrderAddressSeeder::class);
        //$this->call(OrderSeeder::class);
        //$this->call(OrderItemSeeder::class);
        $this->call(PriceAgencySeeder::class);
    }
}