/
var
/
www
/
html
/
back
/
database
/
factories
/
Upload File
HOME
<?php declare(strict_types=1); namespace Database\Factories; use App\Models\User as UserEloquent; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Str; /** * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User> */ final class UserFactory extends Factory { protected $model = UserEloquent::class; /** * 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()->unique()->firstName(), 'last_name' => fake()->unique()->lastName(), 'patronymic' => fake()->firstNameMale() . 'ович', 'email' => fake()->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => static::$password ??= Hash::make('password'), 'is_active' => fake()->boolean(), 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. */ public function unverified(): static { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } }