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

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
<?php
2
 
3
namespace Database\Seeders;
4
 
5
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
6
use Illuminate\Database\Seeder;
7
 
8
class DatabaseSeeder extends Seeder
9
{
10
    /**
11
     * Seed the application's database.
12
     *
13
     * @return void
14
     */
15
    public function run(): void
16
    {
17
        //$this->call(ShopSeeder::class);
18
        //$this->call(DirectorySeeder::class);
19
        //$this->call(ItemSeeder::class);
20
        //$this->call(PriceSeeder::class);
21
        //$this->call(ActionSeeder::class);
22
        //$this->call(UserSeeder::class);
23
        //$this->call(AddressSeeder::class);
24
        //$this->call(OrderAddressSeeder::class);
25
        //$this->call(OrderSeeder::class);
26
        //$this->call(OrderItemSeeder::class);
27
        $this->call(PriceAgencySeeder::class);
28
    }
29
}