You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
570 B
29 lines
570 B
<?php |
|
|
|
namespace Database\Factories; |
|
|
|
use App\Models\User; |
|
use Illuminate\Database\Eloquent\Factories\Factory; |
|
|
|
class UserFactory extends Factory |
|
{ |
|
/** |
|
* The name of the factory's corresponding model. |
|
* |
|
* @var string |
|
*/ |
|
protected $model = User::class; |
|
|
|
/** |
|
* Define the model's default state. |
|
* |
|
* @return array |
|
*/ |
|
public function definition() |
|
{ |
|
return [ |
|
'name' => $this->faker->name, |
|
'email' => $this->faker->unique()->safeEmail, |
|
]; |
|
} |
|
}
|
|
|