Skip to content

Commit

Permalink
user seeder fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oxytoxin committed Aug 10, 2021
1 parent e5d979b commit ff02498
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions database/seeders/UserSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function run()
$student = User::create([
'first_name' => 'Sample',
'last_name' => 'Student 1',
'email' => 'sample1@gmail.com',
'email' => 'studentsample1@gmail.com',
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10),
Expand All @@ -37,7 +37,7 @@ public function run()
$student = User::create([
'first_name' => 'Sample',
'last_name' => 'Student 2',
'email' => 'sample2@gmail.com',
'email' => 'studentsample2@gmail.com',
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10),
Expand All @@ -46,7 +46,7 @@ public function run()
$student = User::create([
'first_name' => 'Sample',
'last_name' => 'Student 3',
'email' => 'sample3@gmail.com',
'email' => 'studentsample3@gmail.com',
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10),
Expand All @@ -55,7 +55,7 @@ public function run()
$student = User::create([
'first_name' => 'Sample',
'last_name' => 'Student 4',
'email' => 'sample4@gmail.com',
'email' => 'studentsample4@gmail.com',
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10),
Expand All @@ -64,7 +64,7 @@ public function run()
$student = User::create([
'first_name' => 'Sample',
'last_name' => 'Student 5',
'email' => 'sample5@gmail.com',
'email' => 'studentsample5@gmail.com',
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10),
Expand Down

0 comments on commit ff02498

Please sign in to comment.