JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "UserFactory.php"

Full Path: /home/markqprx/iniasli.pro/database/factories/UserFactory.php
File size: 1.1 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Database\Factories;

use App\Models\User;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Factories\Factory;
use Str;

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 [
            'first_name' => $this->faker->firstName,
            'last_name' => $this->faker->lastName,
            'username' => $this->faker->userName,
            'language' => $this->faker->languageCode,
            'country' => $this->faker->country,
            'timezone' => $this->faker->timezone,
            'email' =>
                $this->faker->numberBetween(1, 10000) .
                $this->faker->unique()->safeEmail(),
            'email_verified_at' => Carbon::now(),
            'password' =>
                '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
            'remember_token' => Str::random(10),
        ];
    }
}