Skip to content

Instantly share code, notes, and snippets.

@agungprsty
Last active May 29, 2022 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agungprsty/af8366362066833cb9e60f6bb74afebe to your computer and use it in GitHub Desktop.
Save agungprsty/af8366362066833cb9e60f6bb74afebe to your computer and use it in GitHub Desktop.
public function run()
{
for ($i=1; $i < 10; $i++) {
User::create([
'name' => "user0$i",
'email' => "user0$i@gmail.com",
'password' => Hash::make('12345678'),
'created_at' => date('Y-m-d H:i:s'),
'updated_at' => date('Y-m-d H:i:s'),
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment