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/seeds/DatabaseSeeder.php
<?php

use App\User;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Hash;

class DatabaseSeeder extends Seeder
{
    public function run()
    {
        $this->call([]);
        $this->call(AddressProofTypesTableSeeder::class);
        $this->call(BankProofTypesTableSeeder::class);
        $this->call(CountrysTableSeeder::class);
        $this->call(DaysTableSeeder::class);
        $this->call(EvaluationCriteriasTableSeeder::class);
        $this->call(EvaluationStatusTableSeeder::class);
        $this->call(ExperiencesTableSeeder::class);
        $this->call(ExperienceTypesTableSeeder::class);
        $this->call(ExpertisesTableSeeder::class);
        $this->call(FailedJobsTableSeeder::class);
        $this->call(GendersTableSeeder::class);
        $this->call(LanguagesTableSeeder::class);
        $this->call(PasswordResetsTableSeeder::class);
        $this->call(PaymentMethodTypesTableSeeder::class);
        $this->call(PermissionsTableSeeder::class);
        $this->call(PermissionRoleTableSeeder::class);
        $this->call(PhotoProofTypesTableSeeder::class);
        $this->call(ProficiencysTableSeeder::class);
        $this->call(RolesTableSeeder::class);
        $this->call(SoftwaresTableSeeder::class);
        $this->call(SoftwareToolsTableSeeder::class);
        $this->call(StatusTableSeeder::class);
        $this->call(SubjectsTableSeeder::class);
        $this->call(TimeSlotsTableSeeder::class);
        $this->call(TranslatorFlagsTableSeeder::class);
        $this->call(TranslatorStatusTableSeeder::class);
        $this->call(TranslatorTypesTableSeeder::class);
        $this->call(UsersTableSeeder::class);
    }
}