2024-04-27 14:17:16 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
class UserFactory extends Factory
|
|
|
|
{
|
|
|
|
protected static ?string $password;
|
|
|
|
|
|
|
|
public function definition(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => fake()->name(),
|
|
|
|
'email' => fake()->unique()->safeEmail(),
|
|
|
|
'email_verified_at' => now(),
|
2024-05-29 13:40:28 +03:00
|
|
|
'department_id' => null,
|
2024-04-27 14:17:16 +03:00
|
|
|
'password' => static::$password ??= Hash::make('password'),
|
|
|
|
'remember_token' => Str::random(10),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function unverified(): static
|
|
|
|
{
|
|
|
|
return $this->state(fn (array $attributes) => [
|
|
|
|
'email_verified_at' => null,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|