Seed multiple rows at once laravel 5

前端 未结 6 1174
情深已故
情深已故 2021-02-01 12:44

I\'m currently trying to seed my users table. If I try it like this with 2 rows, it fails. It works fine if I just use a single array instead of the 2 arrays inside the $users a

6条回答
  •  甜味超标
    2021-02-01 13:00

    use truncate

     'Super Admin',
                  'email' => 'superadmin@gmail.com',
                  'password' => '123456',
                ],
                [
                  'name' => 'Account Admin',
                  'email' => 'accountadmin@gmail.com',
                  'password' => '13456',
                ],
                [
                  'name' => 'Project Admin',
                  'email' => 'projectadmin@gmail.com',
                  'password' => '13456',
                ],
                [
                  'name' => 'Client Admin',
                  'email' => 'clientadmin@gmail.com',
                  'password' => '13456',
                ]
              ];
    
              User::create($users);
    
        }
    }
    

提交回复
热议问题