📜  laravel 运行种子 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:41.141000             🧑  作者: Mango

代码示例6
insert([
            'name' => Str::random(10),
            'email' => Str::random(10).'@gmail.com',
            'password' => Hash::make('password'),
        ]);
    }
}