repuve-backend-v1/database/seeders/DatabaseSeeder.php

35 lines
890 B
PHP

<?php namespace Database\Seeders;
/**
* @copyright (c) 2025 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
*/
use Illuminate\Database\Seeder;
/**
* Seeder Producción
*
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
*
* @version 1.0.0
*/
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
// Seeders de producción (siempre se ejecutan)
$this->call(RoleSeeder::class);
$this->call(UserSeeder::class);
$this->call(SettingSeeder::class);
$this->call(CatalogNameImgSeeder::class);
$this->call(MunicipalitySeeder::class);
$this->call(ModuleSeeder::class);
$this->call(CatalogTagStatusSeeder::class);
$this->call(CatalogCancellationReasonSeeder::class);
$this->call(RepuveSeeder::class);
}
}