Actualización de lector con código qr
This commit is contained in:
@@ -10,9 +10,6 @@ class DatabaseSeeder extends Seeder
|
||||
{
|
||||
use WithoutModelEvents;
|
||||
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$this->call(RoleSeeder::class);
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Plantel;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class PlantelSeeder extends Seeder
|
||||
@@ -18,6 +17,9 @@ class PlantelSeeder extends Seeder
|
||||
'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
|
||||
]);
|
||||
|
||||
@@ -26,6 +28,9 @@ class PlantelSeeder extends Seeder
|
||||
'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
|
||||
]);
|
||||
|
||||
@@ -34,6 +39,9 @@ class PlantelSeeder extends Seeder
|
||||
'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
|
||||
]);
|
||||
|
||||
@@ -42,6 +50,9 @@ class PlantelSeeder extends Seeder
|
||||
'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
|
||||
]);
|
||||
|
||||
@@ -50,6 +61,9 @@ class PlantelSeeder extends Seeder
|
||||
'razon'=>'123456789',
|
||||
'ubicacion'=>'Legislatura 56, 50450 Atlacomulco de Fabela, Méx.',
|
||||
'telefono'=>7122174727,
|
||||
'nomenclatura'=>'ATL',
|
||||
'latitud'=>'19.79552485274741',
|
||||
'longitud'=>'-99.87546357384377',
|
||||
'status'=>1
|
||||
]);
|
||||
|
||||
@@ -58,6 +72,20 @@ class PlantelSeeder extends Seeder
|
||||
'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
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -31,6 +31,7 @@ class UserSeeder extends Seeder
|
||||
'direccion'=>'Zacatenco mz 21 lt 2 san francisco cuautliquixca',
|
||||
'telefono'=>'5636287758',
|
||||
'password' => bcrypt('2000'),
|
||||
'code'=>1,
|
||||
'status'=>1
|
||||
])->assignRole('Promotor');
|
||||
$user2->plantelUsuarios()->sync([1,2,3]);
|
||||
|
||||
Reference in New Issue
Block a user