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);
}
}