Primer commit proyecto Laravel

This commit is contained in:
2026-02-05 11:10:09 -06:00
commit e4559106d4
2153 changed files with 210301 additions and 0 deletions
+106
View File
@@ -0,0 +1,106 @@
<?php
namespace Database\Seeders;
use App\Models\Carrera;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class CarreraSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Carrera::create([
'name'=>'PREPARATORIA CUIEP',
'nivel'=> 1,
'status' => 1
]);
Carrera::create([
'name'=>'PREPARATORIA CON ESPACIALIDAD EN SALUD',
'nivel'=> 1,
'status' => 1
]);
Carrera::create([
'name'=>'PREPARATORIA CON ESPECIALIDAD EN SOFTWARE',
'nivel'=> 1,
'status' => 1
]);
Carrera::create([
'name'=>'PREPARATORIA CON ESPECIALIDAD EN ARTES',
'nivel'=> 1,
'status' => 1
]);
Carrera::create([
'name'=>'PREPARATORIA CON ESPECIALIDAD EN MECÁNICA',
'nivel'=> 1,
'status' => 1
]);
Carrera::create([
'name'=>'Estrategias financieras, mercados y análisis',
'nivel'=> 3,
'status' => 1
]);
Carrera::create([
'name'=>'Protección de sistemas y dato',
'nivel'=> 3,
'status' => 1
]);
Carrera::create([
'name'=>'Terapia familiar, clínica y organizacional',
'nivel'=> 3,
'status' => 1
]);
Carrera::create([
'name'=>'Corporativo, juicios orales, jurisprudencia',
'nivel'=> 3,
'status' => 1
]);
Carrera::create([
'name'=>'Para gestión y liderazgo organizacional',
'nivel'=> 3,
'status' => 1
]);
Carrera::create([
'name'=>'QUIMICO BIOLOGO',
'nivel'=> 2,
'status' => 1
]);
Carrera::create([
'name'=>'DESARROLLO EMPRESARIAL',
'nivel'=> 2,
'status' => 1
]);
Carrera::create([
'name'=>'LINGÜISTICA',
'nivel'=> 2,
'status' => 1
]);
Carrera::create([
'name'=>'SISTEMAS CONTABLES',
'nivel'=> 2,
'status' => 1
]);
Carrera::create([
'name'=>'BANCA Y MERCADOS FINANCIEROS',
'nivel'=> 2,
'status' => 1
]);
}
}