Files
lms-v2/database/factories/UserFactory.php
T

47 lines
1.1 KiB
PHP
Raw Normal View History

2026-05-30 22:15:16 +07:00
<?php
namespace Database\Factories;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
/**
* @extends Factory<User>
*/
class UserFactory extends Factory
{
/**
* The current password being used by the factory.
*/
protected static ?string $password;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'first_name' => fake()->firstName(),
'last_name' => fake()->lastName(),
2026-05-30 22:15:16 +07:00
'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => static::$password ??= \Illuminate\Support\Facades\Hash::make('password'),
'remember_token' => \Illuminate\Support\Str::random(10),
2026-05-30 22:15:16 +07:00
];
}
/**
* Indicate that the model's email address should be unverified.
*/
public function unverified(): static
{
return $this->state(fn (array $attributes) => [
'email_verified_at' => null,
]);
}
}