40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<?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);
|
|
}
|
|
} |