93 lines
2.8 KiB
PHP
93 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Plantel;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class PlantelSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
Plantel::create([
|
|
'name'=>'Aculco',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'Carretera Aculco-Amealco S/N, 50360 Aculco de Espinoza, Méx.',
|
|
'telefono'=>7181240287,
|
|
'nomenclatura'=>'ACU',
|
|
'latitud'=>'20.095675599841005',
|
|
'longitud'=>'-99.83370646050189',
|
|
'status'=>1
|
|
]);
|
|
|
|
Plantel::create([
|
|
'name'=>'San Juan del Rio',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'5 de Mayo 26, Centro, 76800 San Juan del Río, Qro.',
|
|
'telefono'=>4272774826,
|
|
'nomenclatura'=>'SJR',
|
|
'latitud'=>'20.38996649108517,20.384703934068455',
|
|
'longitud'=>'-99.99204858595175,-99.99729277268392',
|
|
'status'=>1
|
|
]);
|
|
|
|
Plantel::create([
|
|
'name'=>'Tecámac',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'Carr. México - Pachuca Km. 38.5, Tecámac Centro, Tecamac, 55740 Tecámac de Felipe Villanueva, Méx.',
|
|
'telefono'=>5533552116,
|
|
'nomenclatura'=>'TEC',
|
|
'latitud'=>'19.71385878202753',
|
|
'longitud'=>'-98.97363138918948',
|
|
'status'=>1
|
|
]);
|
|
|
|
Plantel::create([
|
|
'name'=>'Tepeji',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'C. Nigromante #85, San Francisco 1ra, 42854 Tepeji del Río de Ocampo, Hgo.',
|
|
'telefono'=>7736826093,
|
|
'nomenclatura'=>'TEP',
|
|
'latitud'=>'19.89967939304829',
|
|
'longitud'=>'-99.34733192966145',
|
|
'status'=>1
|
|
]);
|
|
|
|
Plantel::create([
|
|
'name'=>'Atlacomulco',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'Legislatura 56, 50450 Atlacomulco de Fabela, Méx.',
|
|
'telefono'=>7122174727,
|
|
'nomenclatura'=>'ATL',
|
|
'latitud'=>'19.79552485274741',
|
|
'longitud'=>'-99.87546357384377',
|
|
'status'=>1
|
|
]);
|
|
|
|
Plantel::create([
|
|
'name'=>'Nopala',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'Prof. Benjamín García Uribe 8, Centro, 42470 Nopala de Villagrán, Hgo.',
|
|
'telefono'=>7731328198,
|
|
'nomenclatura'=>'NOP',
|
|
'latitud'=>'20.251432945100376',
|
|
'longitud'=>'-99.64692423068954',
|
|
'status'=>1
|
|
]);
|
|
|
|
Plantel::create([
|
|
'name'=>'En línea',
|
|
'razon'=>'123456789',
|
|
'ubicacion'=>'',
|
|
'telefono'=>7731328198,
|
|
'nomenclatura'=>'LIN',
|
|
'latitud'=>'19.71385878202753',
|
|
'longitud'=>'-98.97363138918948',
|
|
'status'=>1
|
|
]);
|
|
}
|
|
}
|