Carga inicial

This commit is contained in:
IvanAS94
2025-12-26 17:21:11 -08:00
parent 45d9afc951
commit 51880798ca
359 changed files with 42159 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(TiposServiciosTableSeeder::class);
$this->call(ServiciosTableSeeder::class);
$this->call(FormasPagosTableSeeder::class);
$this->call(EstatusServiciosTableSeeder::class);
$this->call(TiposVehiculosTableSeeder::class);
$this->call(VehiculosTableSeeder::class);
$this->call(TiposEmpleadosTableSeeder::class);
$this->call(SucursalesTableSeeder::class);
$this->call(RolesTableSeeder::class);
$this->call(UsersTableSeeder::class);
$this->call(CatFacturacion::class);
//$this->call(ClientesTableSeeder::class);
//$this->call(SolicitudesServicioTableSeeder::class);
$this->call(ParametrosTableSeeder::class);
$this->call(VehiculosSucursalesTableSeeder::class);
$this->call(CatOrigenesTableSeeder::class);
$this->call(PreguntasEmpresarialTableSeeder::class);
$this->call(RespuestasEmpresarialTableSeeder::class);
$this->call(PreguntasDomesticoTableSeeder::class);
$this->call(RespuestasDomesticoTableSeeder::class);
$this->call(PreguntasRespuestasNuevasTableSeeder::class);
$this->call(ColoresWebEstatusServicio::class);
}
}