We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f36858 commit f29e333Copy full SHA for f29e333
database/factories/UserFactory.php
@@ -27,6 +27,10 @@ public function definition()
27
'email' => $this->faker->unique()->safeEmail,
28
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
29
'remember_token' => Str::random(10),
30
+ 'address' => $this->faker->address,
31
+ 'city' => $this->faker->city,
32
+ 'state' => $this->faker->state,
33
+ 'zip_code' => $this->faker->postcode
34
];
35
}
36
0 commit comments