arcos-backend/database/seeders/DatabaseSeeder.php
Juan Felipe Zapata Moreno 56a599603d add: endpoint detecciones
2026-01-08 14:48:10 -06:00

28 lines
578 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
{
$this->call(RoleSeeder::class);
$this->call(UserSeeder::class);
$this->call(SettingSeeder::class);
$this->call(ArcoSeeder::class);
}
}