MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/www/ezwork/database/factories/ProfileFactory.php
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */

use App\Models\Profile;
use Faker\Generator as Faker;

$factory->define(Profile::class, function (Faker $faker) {
    return [
        'user_id' => $faker->name,
        'bio_data' => '',
        'gender_id' => null,
        'nationality_country_id' => null,
        'residence_country_id' => null,
        'profile_status_id' => null,
        'skill_status' => 0,
        'info_status' => 0,
        'evaluation_status' => 0,
        'translator_status_id' => 2,


        
    ];
});