<?php

namespace Database\Factories;

use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\Hash;

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,
            'oauth_id' => $this->faker->randomNumber,
            'email' => $this->faker->unique()->safeEmail,
            'email_verified_at' => now(),
            'activated_at' => now(),
            'password' => Hash::make(Str::random(40)),
            'remember_token' => Str::random(10),
        ];
    }
}
