repuve-backend-v1/database/seeders/DatabaseSeeder.php
Juan Felipe Zapata Moreno cac2263a4f DatabaseSeeder error
2025-11-22 14:27:31 -06:00

32 lines
786 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);
}
}