Procházet zdrojové kódy

Update UserCompanySeeder to use 'Akaun' for company name and email

3.x
Amirul Anwar před 3 měsíci
rodič
revize
1f3b49784a
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      database/seeders/UserCompanySeeder.php

+ 2
- 2
database/seeders/UserCompanySeeder.php Zobrazit soubor

19
             ->withPersonalCompany(function (CompanyFactory $factory) {
19
             ->withPersonalCompany(function (CompanyFactory $factory) {
20
                 return $factory
20
                 return $factory
21
                     ->state([
21
                     ->state([
22
-                        'name' => 'ERPSAAS',
22
+                        'name' => 'Akaun',
23
                     ])
23
                     ])
24
                     ->withTransactions(250)
24
                     ->withTransactions(250)
25
                     ->withOfferings()
25
                     ->withOfferings()
32
             })
32
             })
33
             ->create([
33
             ->create([
34
                 'name' => 'Admin',
34
                 'name' => 'Admin',
35
-                'email' => 'admin@erpsaas.com',
35
+                'email' => 'admin@akaun.com',
36
                 'password' => bcrypt('password'),
36
                 'password' => bcrypt('password'),
37
                 'current_company_id' => 1,  // Assuming this will be the ID of the created company
37
                 'current_company_id' => 1,  // Assuming this will be the ID of the created company
38
             ]);
38
             ]);

Načítá se…
Zrušit
Uložit