浏览代码

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

3.x
Amirul Anwar 10 小时前
父节点
当前提交
1f3b49784a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      database/seeders/UserCompanySeeder.php

+ 2
- 2
database/seeders/UserCompanySeeder.php 查看文件

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
             ]);

正在加载...
取消
保存