Last active
May 29, 2022 00:22
-
-
Save agungprsty/af8366362066833cb9e60f6bb74afebe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function run() | |
{ | |
for ($i=1; $i < 10; $i++) { | |
User::create([ | |
'name' => "user0$i", | |
'email' => "[email protected]", | |
'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