File: /var/www/api_matriculas/database/seeders/DatabaseSeeder.php
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(PermissionsSeeder::class);
$this->call(ProfileSeeder::class);
$this->call(RootSeeder::class);
$this->call(RegionSeeder::class);
$this->call(CommuneSeeder::class);
$this->call(CountriesSeeder::class);
$this->call(GendersSeeder::class);
$this->call(RelationshipsSeeder::class);
$this->call(StatusContractSeeder::class);
$this->call(PaymentMethodsSeeder::class);
$this->call(CurrencyTypesSeeder::class);
$this->call(PaymentConceptsSeeder::class);
$this->call(PaymentConceptDetailsSeeder::class);
$this->call(CoursesLettersSeeder::class);
$this->call(CoursesSeeder::class);
$this->call(PeriodSeeder::class);
$this->call(ContractsFormatsSeeder::class);
$this->call(ConfigurationSeeder::class);
// $this->call(TestParentsStudentsSeeder::class);
$this->call(PaymentConceptDetailCoursesSeeder::class);
$this->call(StatusPostulationSeeder::class);
$this->call(StatusPaymentsSeeder::class);
$this->call(StatusSignaturesSeeder::class);
// $this->call(ContractsSeeder::class);
// $this->call(TestEnrollmentTypesSeeder::class);
$this->call(IntegrationSeeder::class);
$this->call(ExcelUploadTypesSeeder::class);
$this->call(PeriodPricingSeeder::class);
// $this->call([
// ExcelUploadTypesSeeder::class,
// ExcelUploadsSeeder::class,
// ExcelUploadLinesSeeder::class,
// ]);
}
}